diff options
Diffstat (limited to 'lib/ephy-file-helpers.c')
-rw-r--r-- | lib/ephy-file-helpers.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index 8f06eba69..d84b568c9 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -416,19 +416,19 @@ load_mime_from_xml (void) tag = xmlTextReaderConstName (reader); type = xmlTextReaderNodeType (reader); - if (xmlStrEqual (tag, "safe") && type == XML_READER_TYPE_ELEMENT) + if (xmlStrEqual (tag, (const xmlChar *)"safe") && type == XML_READER_TYPE_ELEMENT) { permission = EPHY_MIME_PERMISSION_SAFE; } - else if (xmlStrEqual (tag, "unsafe") && type == XML_READER_TYPE_ELEMENT) + else if (xmlStrEqual (tag, (const xmlChar *)"unsafe") && type == XML_READER_TYPE_ELEMENT) { permission = EPHY_MIME_PERMISSION_UNSAFE; } - else if (xmlStrEqual (tag, "mime-type")) + else if (xmlStrEqual (tag, (const xmlChar *)"mime-type")) { xmlChar *type; - type = xmlTextReaderGetAttribute (reader, "type"); + type = xmlTextReaderGetAttribute (reader, (const xmlChar *)"type"); g_hash_table_insert (mime_table, type, GINT_TO_POINTER (permission)); } |