diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-21 05:51:35 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-21 05:51:35 +0800 |
commit | 011502e395f25263e53ce500a3c7c309f33b3827 (patch) | |
tree | 6b2241af9bd76b6ae32954f37a203b772f0967a3 | |
parent | 9fb8cfcc3f9e5a1df1ee820f2958a8a06207ea97 (diff) | |
download | gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.tar gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.tar.gz gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.tar.bz2 gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.tar.lz gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.tar.xz gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.tar.zst gsoc2013-evolution-011502e395f25263e53ce500a3c7c309f33b3827.zip |
fuck ICONV_CONST, we can add that foo later...if we care.
svn path=/trunk/; revision=19981
-rw-r--r-- | camel/camel-iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-iconv.c b/camel/camel-iconv.c index 3895fd9071..e2798a16e1 100644 --- a/camel/camel-iconv.c +++ b/camel/camel-iconv.c @@ -310,7 +310,7 @@ camel_iconv_open (const char *to, const char *from) size_t camel_iconv (iconv_t cd, const char **inbuf, size_t *inleft, char **outbuf, size_t *outleft) { - return iconv (cd, (ICONV_CONST char **) inbuf, inleft, outbuf, outleft); + return iconv (cd, inbuf, inleft, outbuf, outleft); } |