From ceca548a1dc00561a364f99b5ec1d236da4d1ed1 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 4 Jul 2009 18:19:29 +0000 Subject: Fix serialisation of page titles. svn path=/trunk/netsurf/; revision=8313 --- content/urldb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/urldb.c') diff --git a/content/urldb.c b/content/urldb.c index b4869db26..31202673b 100644 --- a/content/urldb.c +++ b/content/urldb.c @@ -675,7 +675,7 @@ void urldb_write_paths(const struct path_data *parent, const char *host, #endif if (p->urld.title) { - char *s = p->urld.title; + uint8_t *s = (uint8_t *) p->urld.title; for (i = 0; s[i] != '\0'; i++) if (s[i] < 32) -- cgit v1.2.3