From 2c4956a47393241a33e17fb26f0ecba78b0381bb Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 18 Aug 2021 17:52:07 -0400 Subject: Change a variable from int to bool. --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 19c50b6d..a93ad8b4 100644 --- a/main.c +++ b/main.c @@ -220,7 +220,7 @@ main(int argc, char **argv) { int i; char *extra_stack; - int have_srcfile = 0; + bool have_srcfile = false; SRCFILE *s; char *cp; #if defined(LOCALEDEBUG) @@ -443,7 +443,7 @@ main(int argc, char **argv) if (s->stype == SRC_EXTLIB) load_ext(s->fullpath); else if (s->stype != SRC_INC) - have_srcfile++; + have_srcfile = true; } /* do version check after extensions are loaded to get extension info */ -- cgit v1.2.3