From f09e85be22d28bc1772a47d332ef9e1e90958caa Mon Sep 17 00:00:00 2001 From: fosslinux Date: Tue, 9 Jun 2020 09:38:57 +1000 Subject: [PATCH] Fix prototype mismatch --- src/gophernicus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gophernicus.c b/src/gophernicus.c index 65544e2..d0a5c44 100644 --- a/src/gophernicus.c +++ b/src/gophernicus.c @@ -110,7 +110,7 @@ void footer(state *st) /* * Print error message & exit */ -void die(state *st, char *message, char *description) +void die(state *st, const char *message, const char *description) { int en = errno; static const char error_gif[] = ERROR_GIF;