diff options
Diffstat (limited to 'lib/ephy-langs.c')
-rw-r--r-- | lib/ephy-langs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-langs.c b/lib/ephy-langs.c index ff0ecb981..f1977d829 100644 --- a/lib/ephy-langs.c +++ b/lib/ephy-langs.c @@ -351,8 +351,8 @@ load_iso_entries (int iso, reader = xmlNewTextReaderFilename (filename); if (reader == NULL) goto out; - xmlStrPrintf (iso_entries, sizeof (iso_entries), "iso_%d_entries", iso); - xmlStrPrintf (iso_entry, sizeof (iso_entry), "iso_%d_entry", iso); + xmlStrPrintf (iso_entries, sizeof (iso_entries), (const xmlChar *)"iso_%d_entries", iso); + xmlStrPrintf (iso_entry, sizeof (iso_entry), (const xmlChar *)"iso_%d_entry", iso); ret = xmlTextReaderRead (reader); |