From c21063bdc1e7cf120c51a6308ea268a985925cf7 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Wed, 3 Jan 2018 00:18:57 +0100 Subject: pluma-spell-checker-language.c: Fix build warning: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pointer targets in passing argument 3 of ‘xmlStrPrintf’ differ in signedness --- plugins/spell/pluma-spell-checker-language.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/spell/pluma-spell-checker-language.c b/plugins/spell/pluma-spell-checker-language.c index 528712a7..960d91cd 100644 --- a/plugins/spell/pluma-spell-checker-language.c +++ b/plugins/spell/pluma-spell-checker-language.c @@ -160,8 +160,8 @@ load_iso_entries (int iso, reader = xmlNewTextReaderFilename (filename); if (reader == NULL) goto out; - xmlStrPrintf (iso_entries, sizeof (iso_entries), (const xmlChar *)"iso_%d_entries", iso); - xmlStrPrintf (iso_entry, sizeof (iso_entry), (const xmlChar *)"iso_%d_entry", iso); + xmlStrPrintf (iso_entries, sizeof (iso_entries), (const char *)"iso_%d_entries", iso); + xmlStrPrintf (iso_entry, sizeof (iso_entry), (const char *)"iso_%d_entry", iso); ret = xmlTextReaderRead (reader); -- cgit v1.2.1