* view.c (display): Changed return type to void.

This commit is contained in:
Roland Illig 2005-06-28 13:02:09 +00:00
parent a095bce5ee
commit 868c55faa6
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* view.c (normal_search): Replaced with normal_search_cmd(). * view.c (normal_search): Replaced with normal_search_cmd().
(do_regexp_search): Removed unnecessary type cast. (do_regexp_search): Removed unnecessary type cast.
(do_normal_search): Likewise. (do_normal_search): Likewise.
* view.c (display): Changed return type to void.
2005-06-27 Roland Illig <roland.illig@gmx.de> 2005-06-27 Roland Illig <roland.illig@gmx.de>

View File

@ -1556,7 +1556,7 @@ view_display_ruler (WView *view)
} }
/* Displays as much data from view->dpy_topleft as fits on the screen */ /* Displays as much data from view->dpy_topleft as fits on the screen */
static offset_type static void
display (WView *view) display (WView *view)
{ {
const int left = view_get_left (view); const int left = view_get_left (view);
@ -1789,7 +1789,6 @@ display (WView *view)
} }
} }
view->dpy_complete = (get_byte (view, from) == -1); view->dpy_complete = (get_byte (view, from) == -1);
return from;
} }
static void static void