]> granicus.if.org Git - nethack/commitdiff
another warning fix
authorPatR <rankin@nethack.org>
Thu, 31 Jan 2019 00:25:31 +0000 (16:25 -0800)
committerPatR <rankin@nethack.org>
Thu, 31 Jan 2019 00:25:31 +0000 (16:25 -0800)
Only appeared when ISAAC64 was disabled.

src/hacklib.c

index 1fe5c8fd6632530a351a9b44ca70fa6aee29b7df..9a083e2fc1a68ca026d89519d948237f656a3eed 100644 (file)
@@ -852,6 +852,7 @@ STATIC_DCL struct tm *NDECL(getlt);
 
 /* Sets the seed for the random number generator */
 #ifdef USE_ISAAC64
+
 static void
 set_random(seed, fn)
 unsigned long seed;
@@ -859,11 +860,14 @@ int FDECL((*fn), (int));
 {
     init_isaac64(seed, fn);
 }
+
 #else /* USE_ISAAC64 */
+
+/*ARGSUSED*/
 static void
 set_random(seed, fn)
 unsigned long seed;
-int FDECL((*fn),(int));
+int FDECL((*fn), (int)) UNUSED;
 {
     /* the types are different enough here that sweeping the different
      * routine names into one via #defines is even more confusing
@@ -886,6 +890,7 @@ int FDECL((*fn),(int));
 #  endif
 # endif
 }
+
 #endif /* USE_ISAAC64 */
 
 /* An appropriate version of this must always be provided in
@@ -899,7 +904,7 @@ extern unsigned long NDECL(sys_random_seed);
  */
 void
 init_random(fn)
-int FDECL((*fn),(int));
+int FDECL((*fn), (int));
 {
     set_random(sys_random_seed(), fn);
 }
@@ -907,7 +912,7 @@ int FDECL((*fn),(int));
 /* Reshuffles the random number generator. */
 void
 reseed_random(fn)
-int FDECL((*fn),(int));
+int FDECL((*fn), (int));
 {
    /* only reseed if we are certain that the seed generation is unguessable
     * by the players. */