diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | main.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2021-08-18 Arnold D. Robbins <arnold@skeeve.com> + + * main.c (main): Change have_srcfile from int to bool. + 2021-08-15 Arnold D. Robbins <arnold@skeeve.com> Allow setting AR and ARFLAGS on the configure command line. @@ -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 */ |