diff options
author | dim <dim@FreeBSD.org> | 2012-11-14 18:52:37 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-11-14 18:52:37 +0000 |
commit | 28618b83a774cc2a66001cf8d8697e5745612e8b (patch) | |
tree | 59e5be6eb0d3803c95459f2a91a49dd9a3d2ac3d /games | |
parent | 5bf6c66afc45464d8727bbf83fa65f493eea011c (diff) | |
download | FreeBSD-src-28618b83a774cc2a66001cf8d8697e5745612e8b.zip FreeBSD-src-28618b83a774cc2a66001cf8d8697e5745612e8b.tar.gz |
In games/fortune/fortune/fortune.c, make 'Debug' the correct type (it is
*not* a boolean).
MFC after: 3 days
Diffstat (limited to 'games')
-rw-r--r-- | games/fortune/fortune/fortune.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c index 22d85ac..d5ce1b9 100644 --- a/games/fortune/fortune/fortune.c +++ b/games/fortune/fortune/fortune.c @@ -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 */ |