move rfc2047.c into lib-mime, reindent it.
[apps/madmutt.git] / charset.h
index f8fcc98..5b3b732 100644 (file)
--- a/charset.h
+++ b/charset.h
@@ -29,8 +29,8 @@ typedef void *iconv_t;
 #  define my_iconv(a,b,c,d,e)  0
 #  define iconv_close(a)       0
 #else
-static inline size_t my_iconv(iconv_t ict, const char **inbuf, size_t *ilen,
-                              char **outbuf, size_t *olen)
+static inline ssize_t my_iconv(iconv_t ict, const char **inbuf, size_t *ilen,
+                               char **outbuf, size_t *olen)
 {
     return iconv(ict, (char **)inbuf, ilen, outbuf, olen);
 }