From: Taylor R Campbell Date: Tue, 4 Jun 2013 20:52:23 +0000 (+0000) Subject: The gdbm error handler takes a const char *, not a char *. X-Git-Tag: release-9.2.0~155 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=cdb4c46c4dbff05774e56ae29405a2646f93a734;p=mit-scheme.git The gdbm error handler takes a const char *, not a char *. --- diff --git a/src/microcode/prgdbm.c b/src/microcode/prgdbm.c index 63cad8a56..4478c3e5f 100644 --- a/src/microcode/prgdbm.c +++ b/src/microcode/prgdbm.c @@ -138,7 +138,7 @@ datum_to_object (datum d) } static void -gdbm_fatal_error (char * msg) +gdbm_fatal_error (const char * msg) { outf_error ("\ngdbm: %s\n", msg); outf_flush_error ();