Add a "const" to the argument of dupstr() so that GCC doesn't complain when
authorben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sun, 4 Feb 2007 23:39:47 +0000 (23:39 +0000)
committerben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sun, 4 Feb 2007 23:39:47 +0000 (23:39 +0000)
we pass it a constant string.

git-svn-id: svn://svn.tartarus.org/sgt/halibut@7218 cda61777-01e9-0310-a592-d414129be87e

halibut.h
malloc.c

index 3f5b560..5a6c8fd 100644 (file)
--- 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)) )
index 2ff22fd..4389d8a 100644 (file)
--- 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;