summaryrefslogtreecommitdiff
path: root/src/marker.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-09-21 20:55:56 +0000
committerGerd Moellmann <gerd@gnu.org>2000-09-21 20:55:56 +0000
commit80d26f99bb1c9e765ac367c7d1baac8cfab82e7c (patch)
treef43f2cc1381f6cc82985ce17cfebcc326a64add0 /src/marker.c
parent6bbd7a29592594e23e5cb98467e608f10b00f877 (diff)
downloademacs-80d26f99bb1c9e765ac367c7d1baac8cfab82e7c.tar.gz
Avoid some more compiler warnings.
(byte_char_debug_check): Return void.
Diffstat (limited to 'src/marker.c')
-rw-r--r--src/marker.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/marker.c b/src/marker.c
index 5b01738cf9d..b3f9e0b4b84 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -32,6 +32,8 @@ static int cached_bytepos;
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 @@ clear_charpos_cache (b)
} \
}
-int
+static void
byte_char_debug_check (b, charpos, bytepos)
struct buffer *b;
int charpos, bytepos;