diff options
Diffstat (limited to 'camel/camel-mime-part-utils.c')
-rw-r--r-- | camel/camel-mime-part-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-part-utils.c b/camel/camel-mime-part-utils.c index 6269e9391c..c7ee07f070 100644 --- a/camel/camel-mime-part-utils.c +++ b/camel/camel-mime-part-utils.c @@ -120,7 +120,7 @@ convert_buffer (GByteArray *in, const char *to, const char *from) cd = e_iconv_open(to, from); if (cd == (iconv_t) -1) { - g_warning ("Cannot convert from '%s' to '%s': %s", from, to, g_strerror (errno)); + g_warning ("Cannot convert from '%s' to '%s': %s", from, to, strerror (errno)); return NULL; } @@ -179,7 +179,7 @@ convert_buffer (GByteArray *in, const char *to, const char *from) return out; fail: - g_warning ("Cannot convert from '%s' to '%s': %s", from, to, g_strerror (errno)); + g_warning ("Cannot convert from '%s' to '%s': %s", from, to, strerror (errno)); g_byte_array_free (out, TRUE); |