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] --- malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'malloc.c') diff --git a/malloc.c b/malloc.c index 2ff22fd..4389d8a 100644 --- a/malloc.c +++ b/malloc.c @@ -91,7 +91,7 @@ void *(srealloc)(LOGPARAMS void *p, int size) { * dupstr is like strdup, but with the never-return-NULL property * of smalloc (and also reliably defined in all environments :-) */ -char *dupstr(char *s) { +char *dupstr(char const *s) { char *r = smalloc(1+strlen(s)); strcpy(r,s); return r; -- cgit v1.1