diff src/buffer.c @ 9228:ea504064c996 v7.4.1897

commit https://github.com/vim/vim/commit/fd89d7ea81b18d32363456b16258174dc9e095dc Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 4 20:25:05 2016 +0200 patch 7.4.1897 Problem: Various typos, long lines and style mistakes. Solution: Fix the typos, wrap lines, improve style.
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Jun 2016 20:30:06 +0200
parents 18bbf31015c2
children f094d4085014
line wrap: on
line diff
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2516,7 +2516,7 @@ buflist_findnr(int nr)
 	nr = curwin->w_alt_fnum;
     for (buf = firstbuf; buf != NULL; buf = buf->b_next)
 	if (buf->b_fnum == nr)
-	    return (buf);
+	    return buf;
     return NULL;
 }