# HG changeset patch # User Gerd Moellmann <gerd@gnu.org> # Date 969569734 0 # Node ID cf1b4094811a5c5e863d2cdaa7cf35cedb150873 # Parent 43566b0aec592a698b3d0be8915f930a6c7f2510 Avoid some more compiler warnings. (byte_char_debug_check): Return void. diff -r 43566b0aec59 -r cf1b4094811a src/marker.c --- a/src/marker.c Thu Sep 21 20:54:57 2000 +0000 +++ b/src/marker.c Thu Sep 21 20:55:34 2000 +0000 @@ -32,6 +32,8 @@ static struct buffer *cached_buffer; static int cached_modiff; +static void byte_char_debug_check P_ ((struct buffer *, int, int)); + /* Nonzero means enable debugging checks on byte/char correspondences. */ static int byte_debug_flag; @@ -97,7 +99,7 @@ } \ } -int +static void byte_char_debug_check (b, charpos, bytepos) struct buffer *b; int charpos, bytepos;