aboutsummaryrefslogtreecommitdiffstats
path: root/awkgram.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-03-05 20:21:10 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-03-05 20:21:10 +0200
commit60c5e72ad30f6c2108574f8c072a386302bc0f51 (patch)
tree69065edd511777bb788bc214a3a562d1ecfa953b /awkgram.c
parenta0753d1e2b362e9e6b4ea35ff6135505758521f6 (diff)
parent7b77ec860377eafcad05025888721a46b8a7f349 (diff)
downloadegawk-60c5e72ad30f6c2108574f8c072a386302bc0f51.tar.gz
egawk-60c5e72ad30f6c2108574f8c072a386302bc0f51.tar.bz2
egawk-60c5e72ad30f6c2108574f8c072a386302bc0f51.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'awkgram.c')
-rw-r--r--awkgram.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/awkgram.c b/awkgram.c
index 8067ab6e..b6fd17f4 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -6731,7 +6731,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)
@@ -6744,7 +6744,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();