summaryrefslogtreecommitdiff
path: root/src/camel/tests/message
diff options
context:
space:
mode:
authorCorentin Noël <corentin@elementary.io>2016-11-08 15:49:25 +0100
committerMilan Crha <mcrha@redhat.com>2016-11-08 15:49:25 +0100
commit9af0c834ea6094c651f7e82fc2f02afa0c6fd697 (patch)
tree2919e33c592c6398f628cdf5687d04bde0fd7795 /src/camel/tests/message
parent9af58096c79e445c9156c80644e5376f5d4ed990 (diff)
downloadevolution-data-server-9af0c834ea6094c651f7e82fc2f02afa0c6fd697.tar.gz
Bug 764065 - [Camel] Port more classes to GObject
Some parts had been done by Milan Crha.
Diffstat (limited to 'src/camel/tests/message')
-rw-r--r--src/camel/tests/message/test2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/camel/tests/message/test2.c b/src/camel/tests/message/test2.c
index ada3c1dc6..f00e23a73 100644
--- a/src/camel/tests/message/test2.c
+++ b/src/camel/tests/message/test2.c
@@ -41,13 +41,13 @@ static gchar *convert (const gchar *in, const gchar *from, const gchar *to)
outp = out = g_malloc (outlen);
inp = in;
- if (iconv (ic, &inp, &inlen, &outp, &outlen) == -1) {
+ if (camel_iconv (ic, &inp, &inlen, &outp, &outlen) == -1) {
test_free (out);
g_iconv_close (ic);
return g_strdup (in);
}
- if (iconv (ic, NULL, 0, &outp, &outlen) == -1) {
+ if (camel_iconv (ic, NULL, 0, &outp, &outlen) == -1) {
test_free (out);
g_iconv_close (ic);
return g_strdup (in);