From 7903849939ea2c0ae2a7608591cde490cfab58c7 Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 17 Nov 2023 08:42:43 -0500 Subject: [PATCH] follow-up: program_state variables are int --- src/windows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows.c b/src/windows.c index dbe96ee57..f710b4648 100644 --- a/src/windows.c +++ b/src/windows.c @@ -1682,8 +1682,8 @@ get_menu_coloring(const char *str, int *color, int *attr) void getlin(const char *query, register char *bufp) { - gp.program_state.in_getlin = TRUE; + gp.program_state.in_getlin = 1; (*windowprocs.win_getlin)(query, bufp); - gp.program_state.in_getlin = FALSE; + gp.program_state.in_getlin = 0; } /*windows.c*/