From 2f999a9a595714fe62630b68065cee8d668ba13e Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 4 May 2004 09:56:38 +0000 Subject: dupstr() should take a const char *. In particular, this allows compilation under GTK 2. [originally from svn r4198] --- malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'malloc.c') diff --git a/malloc.c b/malloc.c index 3f6a6a8..fd0ddf9 100644 --- a/malloc.c +++ b/malloc.c @@ -46,7 +46,7 @@ void *srealloc(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(const char *s) { char *r = smalloc(1+strlen(s)); strcpy(r,s); return r; -- cgit v1.1