In games/fortune/fortune/fortune.c, make 'Debug' the correct type (it is

*not* a boolean).

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2012-11-14 18:52:37 +00:00
parent ea9a926c9a
commit 3da6b5f9a5

View File

@ -109,7 +109,7 @@ static bool Equal_probs = FALSE; /* scatter un-allocted prob equally */
static bool Match = FALSE; /* dump fortunes matching a pattern */
static bool WriteToDisk = false; /* use files on disk to save state */
#ifdef DEBUG
static bool Debug = FALSE; /* print debug messages */
static int Debug = 0; /* print debug messages */
#endif
static char *Fortbuf = NULL; /* fortune buffer for -m */