From b7846ecb151aba503cfac88fac6be68562ee8cb9 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Mon, 31 Dec 2018 09:35:54 -0500 Subject: [PATCH] SP->resized is used in a non-boolean way in x11. --- curses.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curses.h b/curses.h index 9f74d317..62e84cd4 100644 --- a/curses.h +++ b/curses.h @@ -278,7 +278,7 @@ typedef struct bool raw_out; /* raw output mode (7 v. 8 bits) */ bool audible; /* FALSE if the bell is visual */ bool mono; /* TRUE if current screen is mono */ - bool resized; /* TRUE if TERM has been resized */ + short resized; /* TRUE if TERM has been resized */ bool orig_attr; /* TRUE if we have the original colors */ short orig_fore; /* original screen foreground color */ short orig_back; /* original screen foreground color */