diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-02-06 10:26:07 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-02-06 10:26:07 +0000 |
commit | 91597dbb0a352b0e2e9dba5b72323ae961c70e4a (patch) | |
tree | 7d902b4fd725af0f02532a880ca790c3218a1fa5 /games | |
parent | 211bbef346288fab8628362239f09829d707fbdb (diff) |
Debug, whatever it's worth, is clearly not a boolean
Diffstat (limited to 'games')
-rw-r--r-- | games/fortune/fortune/fortune.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c index e216b045b45..f2216c9308a 100644 --- a/games/fortune/fortune/fortune.c +++ b/games/fortune/fortune/fortune.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fortune.c,v 1.38 2015/02/06 10:25:32 tedu Exp $ */ +/* $OpenBSD: fortune.c,v 1.39 2015/02/06 10:26:06 tedu Exp $ */ /* $NetBSD: fortune.c,v 1.8 1995/03/23 08:28:40 cgd Exp $ */ /*- @@ -93,7 +93,7 @@ bool All_forts = FALSE; /* any fortune allowed */ bool Equal_probs = FALSE; /* scatter un-allocted prob equally */ bool Match = FALSE; /* dump fortunes matching a pattern */ #ifdef DEBUG -bool Debug = FALSE; /* print debug messages */ +int Debug = FALSE; /* print debug messages */ #endif char *Fortbuf = NULL; /* fortune buffer for -m */ |