From a6137380cf2e8711c2ec7a522e746e894aaea473 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 4 Feb 2007 23:39:47 +0000 Subject: Add a "const" to the argument of dupstr() so that GCC doesn't complain when we pass it a constant string. [originally from svn r7218] --- halibut.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'halibut.h') diff --git a/halibut.h b/halibut.h index 3f5b560..5a6c8fd 100644 --- a/halibut.h +++ b/halibut.h @@ -275,7 +275,7 @@ void sfree(void *p); void free_word_list(word *w); void free_para_list(paragraph *p); word *dup_word_list(word *w); -char *dupstr(char *s); +char *dupstr(char const *s); #define snew(type) ( (type *) smalloc (sizeof (type)) ) #define snewn(number, type) ( (type *) smalloc ((number) * sizeof (type)) ) -- cgit v1.1