From 7a5b8a934b310562e992c102a89c0e96c389785f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 28 Jul 1999 19:46:05 +0000 Subject: [PATCH] (string_char_and_length): Fix previous change. --- src/xdisp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 099d37a515e..d4bf0ca7308 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -868,9 +868,9 @@ window_box_edges (w, area, top_left_x, top_left_y, character. */ static INLINE int -string_char_and_length (str, max_len, len) +string_char_and_length (str, maxlen, len) unsigned char *str; - int max_len, *len; + int maxlen, *len; { int c; -- 2.39.5