summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2008-07-30 00:54:43 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2008-07-30 00:54:43 +0000
commit611b558d0ed1a212f328f83ec569d234cee4f72c (patch)
treee139b09332e26765f7e660f8ed514710c35ffcac /content/content.h
parent307ab6675f9a7129d645bb5c25b919d25e3ca8bd (diff)
downloadnetsurf-611b558d0ed1a212f328f83ec569d234cee4f72c.tar.gz
netsurf-611b558d0ed1a212f328f83ec569d234cee4f72c.tar.bz2
Constify content_type_name & content_status_name
svn path=/trunk/netsurf/; revision=4815
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/content.h b/content/content.h
index a44d36782..2161a07f9 100644
--- a/content/content.h
+++ b/content/content.h
@@ -266,8 +266,8 @@ struct content {
};
extern struct content *content_list;
-extern const char *content_type_name[];
-extern const char *content_status_name[];
+extern const char * const content_type_name[];
+extern const char * const content_status_name[];
content_type content_lookup(const char *mime_type);