From 95ef4d9dc7c7a92f811f9a8b6108d9d218223842 Mon Sep 17 00:00:00 2001 From: dim Date: Sat, 17 Nov 2012 23:31:16 +0000 Subject: [PATCH] MFC r243036: In games/fortune/fortune/fortune.c, make 'Debug' the correct type (it is *not* a boolean). git-svn-id: svn://svn.freebsd.org/base/stable/9@243197 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- games/fortune/fortune/fortune.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c index f69a869fe..139d41a29 100644 --- a/games/fortune/fortune/fortune.c +++ b/games/fortune/fortune/fortune.c @@ -109,7 +109,7 @@ bool Equal_probs = FALSE; /* scatter un-allocted prob equally */ bool Match = FALSE; /* dump fortunes matching a pattern */ static bool WriteToDisk = false; /* use files on disk to save state */ #ifdef DEBUG -bool Debug = FALSE; /* print debug messages */ +int Debug = FALSE; /* print debug messages */ #endif char *Fortbuf = NULL; /* fortune buffer for -m */ -- 2.45.0