From cdb4c46c4dbff05774e56ae29405a2646f93a734 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Tue, 4 Jun 2013 20:52:23 +0000 Subject: [PATCH] The gdbm error handler takes a const char *, not a char *. --- src/microcode/prgdbm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (); -- 2.25.1