aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
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 */