summaryrefslogtreecommitdiff
path: root/riscos/theme.c
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2009-02-01 13:37:32 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2009-02-01 13:37:32 +0000
commit3f0c50e5a0eba982aca4ff377b1018018fb16b64 (patch)
tree295e998f83525c84c02f6b54496fe87670b4834b /riscos/theme.c
parente8399d8a76821984e1159dc27368202e96799c4b (diff)
downloadnetsurf-3f0c50e5a0eba982aca4ff377b1018018fb16b64.tar.gz
netsurf-3f0c50e5a0eba982aca4ff377b1018018fb16b64.tar.bz2
- C strings have always an implicit NUL character at the end, no need to specify an extra one.
- riscos/configure/con_theme.c: removed spurious code line. svn path=/trunk/netsurf/; revision=6331
Diffstat (limited to 'riscos/theme.c')
-rw-r--r--riscos/theme.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscos/theme.c b/riscos/theme.c
index a540f3b43..a5c1875cb 100644
--- a/riscos/theme.c
+++ b/riscos/theme.c
@@ -120,9 +120,9 @@ static wimp_window theme_toolbar_window = {
/* Shared icon validation
*/
-static char theme_url_validation[] = "Pptr_write;KN\0";
-static char theme_null_text_string[] = "\0";
-static char theme_separator_name[] = "separator\0";
+static char theme_url_validation[] = "Pptr_write;KN";
+static char theme_null_text_string[] = "";
+static char theme_separator_name[] = "separator";
static char theme_favicon_sprite[12];