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. --- combi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'combi.c') diff --git a/combi.c b/combi.c index 4c5d107..3460183 100644 --- a/combi.c +++ b/combi.c @@ -79,7 +79,7 @@ void free_combi(combi_ctx *combi) #include -void fatal(char *fmt, ...) +void fatal(const char *fmt, ...) { abort(); } -- cgit v1.1