summaryrefslogtreecommitdiff
path: root/halibut.h
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2007-02-04 23:39:47 +0000
committerBen Harris <bjh21@bjh21.me.uk>2007-02-04 23:39:47 +0000
commita6137380cf2e8711c2ec7a522e746e894aaea473 (patch)
treea8d5182a47c067f270e0b4379a6a113bce76c96a /halibut.h
parent89017ba7004b9cb9e944775232c5ab917b40f262 (diff)
downloadhalibut-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]
Diffstat (limited to '')
-rw-r--r--halibut.h2
1 files changed, 1 insertions, 1 deletions
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)) )