diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2007-02-04 23:39:47 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2007-02-04 23:39:47 +0000 |
| commit | a6137380cf2e8711c2ec7a522e746e894aaea473 (patch) | |
| tree | a8d5182a47c067f270e0b4379a6a113bce76c96a | |
| parent | 89017ba7004b9cb9e944775232c5ab917b40f262 (diff) | |
| download | halibut-a6137380cf2e8711c2ec7a522e746e894aaea473.zip halibut-a6137380cf2e8711c2ec7a522e746e894aaea473.tar.gz halibut-a6137380cf2e8711c2ec7a522e746e894aaea473.tar.bz2 halibut-a6137380cf2e8711c2ec7a522e746e894aaea473.tar.xz | |
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]
| -rw-r--r-- | halibut.h | 2 | ||||
| -rw-r--r-- | malloc.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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)) ) @@ -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; |