]> granicus.if.org Git - fortune-mod/commitdiff
fix some C compiler warnings on windows
authorShlomi Fish <shlomif@shlomifish.org>
Mon, 24 Aug 2020 17:54:40 +0000 (20:54 +0300)
committerShlomi Fish <shlomif@shlomifish.org>
Wed, 16 Sep 2020 11:00:36 +0000 (14:00 +0300)
fortune-mod/fortune/fortune.c
fortune-mod/tests/t/lib/FortTestInst.pm

index c866afd40402312646eb628e45d124e53314c0c3..5edd57b2a679cca7691662f9071783599b95b21a 100644 (file)
@@ -139,9 +139,9 @@ typedef struct fd
     struct fd *next, *prev;
 } FILEDESC;
 
-static char *env_lang;
+static const char *env_lang = NULL;
 
-static bool Found_one;           /* did we find a match? */
+static bool Found_one = false;   /* did we find a match? */
 static bool Find_files = false;  /* just find a list of proper fortune files */
 static bool Wait = false;        /* wait desired after fortune */
 static bool Short_only = false;  /* short fortune desired */
index cd005b31d56c1e2ed73af27663ced39ccf3120a8..a6079002a9c092544df5f93ea62b6e7b53b946c6 100644 (file)
@@ -7,7 +7,7 @@ use Path::Tiny qw/ path tempdir tempfile cwd /;
 use File::Path qw/mkpath rmtree/;
 
 my $IS_WIN = ( $^O eq "MSWin32" );
-my $SEP    = $IS_WIN ? "\\" : '/';
+my $SEP    = $IS_WIN ? "\\"    : '/';
 my $MAKE   = $IS_WIN ? 'gmake' : 'make';
 
 sub do_system