diff options
author | 2004-01-30 17:37:37 +0000 | |
---|---|---|
committer | 2004-01-30 17:37:37 +0000 | |
commit | 26abdd6fd64ae85d223abde0cba1bf003d230ba3 (patch) | |
tree | ee63d35c7e6611c0a5ba54c9968d2ade6236a709 | |
parent | The empty filename does not receive normalization. (diff) | |
download | wireguard-openbsd-26abdd6fd64ae85d223abde0cba1bf003d230ba3.tar.xz wireguard-openbsd-26abdd6fd64ae85d223abde0cba1bf003d230ba3.zip |
a collection of flags is an int.
noticed by tedu.
-rw-r--r-- | usr.bin/make/main.c | 4 |
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 */ |