From 61e33053bec0b533d5bd75eda5edc79b1bc45f5d Mon Sep 17 00:00:00 2001 From: pfg Date: Sat, 27 Jan 2018 17:43:09 +0000 Subject: [PATCH] fortune(6): Fix gcc80 -Wbool-operation warnings. Hinted by: Dragonfly (git 4d1086765752f0569497d06460d95117c74f33ac) --- usr.bin/fortune/fortune/fortune.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/usr.bin/fortune/fortune/fortune.c b/usr.bin/fortune/fortune/fortune.c index 2fb2be0e249e..af408d6dff1d 100644 --- a/usr.bin/fortune/fortune/fortune.c +++ b/usr.bin/fortune/fortune/fortune.c @@ -289,35 +289,35 @@ getargs(int argc, char *argv[]) #endif /* DEBUG */ switch(ch) { case 'a': /* any fortune */ - All_forts++; + All_forts = TRUE; break; #ifdef DEBUG case 'D': Debug++; break; #endif /* DEBUG */ - case 'e': - Equal_probs++; /* scatter un-allocted prob equally */ + case 'e': /* scatter un-allocted prob equally */ + Equal_probs = TRUE; break; case 'f': /* find fortune files */ - Find_files++; + Find_files = TRUE; break; case 'l': /* long ones only */ - Long_only++; + Long_only = TRUE; Short_only = FALSE; break; case 'o': /* offensive ones only */ - Offend++; + Offend = TRUE; break; case 's': /* short ones only */ - Short_only++; + Short_only = TRUE; Long_only = FALSE; break; case 'w': /* give time to read */ - Wait++; + Wait = TRUE; break; case 'm': /* dump out the fortunes */ - Match++; + Match = TRUE; pat = optarg; break; case 'i': /* case-insensitive match */