From 97773a0db9bcbafa16afcd1461ed6eead7f192a8 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Mon, 5 Mar 2018 19:29:54 +0200 Subject: Minor cleanups (bool to int, move a macro). --- awkgram.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'awkgram.c') diff --git a/awkgram.c b/awkgram.c index 52821eab..c1a5ead4 100644 --- a/awkgram.c +++ b/awkgram.c @@ -6706,7 +6706,7 @@ static int yylex(void) { static char etoa_xlate[256]; - static int do_etoa_init = 1; + static bool do_etoa_init = true; int tok; if (do_etoa_init) @@ -6719,7 +6719,7 @@ yylex(void) #else # error "An EBCDIC-to-ASCII translation function is needed for this system" #endif - do_etoa_init = 0; + do_etoa_init = false; } tok = yylex_ebcdic(); -- cgit v1.2.3