]> granicus.if.org Git - fortune-mod/commitdiff
convert to bool
authorShlomi Fish <shlomif@shlomifish.org>
Sat, 2 May 2020 10:14:07 +0000 (13:14 +0300)
committerShlomi Fish <shlomif@shlomifish.org>
Sat, 2 May 2020 10:14:07 +0000 (13:14 +0300)
fortune-mod/fortune/fortune.c

index 078589bea9ce08899e126c75f3dcaa0377e2bae8..4187b9652213e52baec9b4deb5fcafb421abb145 100644 (file)
@@ -1074,7 +1074,7 @@ static int form_file_list(char **files, int file_cnt)
  */
 static void getargs(int argc, char **argv)
 {
-    int ignore_case = false;
+    bool ignore_case = false;
 
 #ifndef NO_REGEX
     char *pat = NULL;
@@ -1143,7 +1143,7 @@ static void getargs(int argc, char **argv)
             pat = optarg;
             break;
         case 'i': /* case-insensitive match */
-            ignore_case++;
+            ignore_case = true;
             break;
 #endif            /* NO_REGEX */
         case 'u': /* Don't recode the fortune */