summaryrefslogtreecommitdiff
path: root/riscos/plugin.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/plugin.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/plugin.c')
-rw-r--r--riscos/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscos/plugin.c b/riscos/plugin.c
index d973e7472..6a9cea38e 100644
--- a/riscos/plugin.c
+++ b/riscos/plugin.c
@@ -1447,7 +1447,7 @@ bool plugin_write_parameters_file(struct content *c,
ppi = 0;
}
- fwrite("\0", sizeof(char), 4, fp);
+ fwrite("", sizeof(char), 4, fp);
fclose(fp);