From 3276376d1be74b66970b88c3e941dcedf8d22474 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 1 Oct 2017 14:04:47 +0100 Subject: Assorted char * -> const char * API changes. I went through all the char * parameters and return values I could see in puzzles.h by eye and spotted ones that surely ought to have been const all along. --- unequal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unequal.c') diff --git a/unequal.c b/unequal.c index cdea0a0..ccb00dd 100644 --- a/unequal.c +++ b/unequal.c @@ -2039,7 +2039,7 @@ const char *quis = NULL; #if 0 /* currently unused */ -static void debug_printf(char *fmt, ...) +static void debug_printf(const char *fmt, ...) { char buf[4096]; va_list ap; -- cgit v1.1