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
This commit is contained in:
Hartmut Brandt 2005-09-07 07:34:24 +00:00
parent 1e36c0be6d
commit 724b6284e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=149844

View File

@ -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 */