summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-01-03 00:18:57 +0100
committerPablo Barciela <[email protected]>2018-01-03 00:18:57 +0100
commitc21063bdc1e7cf120c51a6308ea268a985925cf7 (patch)
treebb3b230974a7dabe1d6d9e6841aebb973dcdb207
parent87e53b3bba17e7718cb120837268a8b5acfc24ca (diff)
downloadpluma-c21063bdc1e7cf120c51a6308ea268a985925cf7.tar.bz2
pluma-c21063bdc1e7cf120c51a6308ea268a985925cf7.tar.xz
pluma-spell-checker-language.c: Fix build warning:
pointer targets in passing argument 3 of ‘xmlStrPrintf’ differ in signedness
-rw-r--r--plugins/spell/pluma-spell-checker-language.c4
1 files changed, 2 insertions, 2 deletions
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);