summaryrefslogtreecommitdiff
path: root/usr.bin/make/main.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2004-01-30 17:37:38 +0000
committerMarc Espie <espie@cvs.openbsd.org>2004-01-30 17:37:38 +0000
commit4dc32f576547a7dc046c4dfe4d109d07a2c715c1 (patch)
treea47b04d86aa4df0839d11396297f888dbbc2c727 /usr.bin/make/main.c
parent816707c18d9d182a27d94ba70ddd004597217b6d (diff)
a collection of flags is an int.
noticed by tedu.
Diffstat (limited to 'usr.bin/make/main.c')
-rw-r--r--usr.bin/make/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index 0862420046d..27f36304bff 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: main.c,v 1.62 2003/06/03 02:56:11 millert Exp $ */
+/* $OpenBSD: main.c,v 1.63 2004/01/30 17:37:37 espie Exp $ */
/* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */
/*
@@ -91,7 +91,7 @@ static LIST varstoprint; /* list of variables to print */
int maxJobs; /* -j argument */
static int maxLocal; /* -L argument */
bool compatMake; /* -B argument */
-bool debug; /* -d flag */
+int debug; /* -d flag */
bool noExecute; /* -n flag */
bool keepgoing; /* -k flag */
bool queryFlag; /* -q flag */