summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2005-09-07 07:34:24 +0000
committerharti <harti@FreeBSD.org>2005-09-07 07:34:24 +0000
commitaa7c19b5e337bcd80a4960b81decbed70dad0a23 (patch)
tree26117412563c66cba84c200d42f2156164a7238e /usr.bin
parent7f3182e536d8a343c1b999ecde4b850c8644b3e6 (diff)
downloadFreeBSD-src-aa7c19b5e337bcd80a4960b81decbed70dad0a23.zip
FreeBSD-src-aa7c19b5e337bcd80a4960b81decbed70dad0a23.tar.gz
Fix the type of the variable 'debug'. It is used as a bitmap, so the
type should be int rather than Boolean. PR: bin/84528 Submitted by: Max Okumoto <okumoto@ucsd.edu> MFC after: 3 weeks
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index aeed734..4ee3a89 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -121,7 +121,7 @@ Boolean allPrecious; /* .PRECIOUS given on line by itself */
Boolean beSilent; /* -s flag */
Boolean beVerbose; /* -v flag */
Boolean compatMake; /* -B argument */
-Boolean debug; /* -d flag */
+int debug; /* -d flag */
Boolean ignoreErrors; /* -i flag */
int jobLimit; /* -j argument */
Boolean jobsRunning; /* TRUE if the jobs might be running */
OpenPOWER on IntegriCloud