--- setup.h.orig	2002-01-14 12:23:07
+++ setup.h	2025-03-03 16:01:15
@@ -27,7 +27,7 @@
 #define FLAG_MERGED 4
 
 /*something to print if gdbm dies horribly*/
-void fatalError(char s[]);
+void fatalError(const char *s);
 
 /*The wordfile, rhymefile and multiplefile are set by this function
   The flags are the bits set by the command-line arguments.
--- setup.c.orig	2002-01-14 12:23:22
+++ setup.c	2025-03-03 16:00:50
@@ -16,8 +16,8 @@
   {0,0,0,0}
 };
 
-void fatalError(char s[]) {
-  fprintf(stderr, s);
+void fatalError(const char *s) {
+  fprintf(stderr, "%s", s);
   exit(1);
 }
 
