aboutsummaryrefslogtreecommitdiffstats
path: root/src/scroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scroll.c')
-rw-r--r--src/scroll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scroll.c b/src/scroll.c
index 33af18d2090..f013ebbee0e 100644
--- a/src/scroll.c
+++ b/src/scroll.c
@@ -245,8 +245,8 @@ do_scrolling (struct frame *frame, struct glyph_matrix *current_matrix, struct m
245 int i, j, k; 245 int i, j, k;
246 246
247 /* Set to 1 if we have set a terminal window with 247 /* Set to 1 if we have set a terminal window with
248 set_terminal_window. */ 248 set_terminal_window. It's unsigned to work around GCC bug 48228. */
249 int terminal_window_p = 0; 249 unsigned int terminal_window_p = 0;
250 250
251 /* A queue for line insertions to be done. */ 251 /* A queue for line insertions to be done. */
252 struct queue { int count, pos; }; 252 struct queue { int count, pos; };