From 22cd77900288e0bf974906e54583aa5306d2f7f8 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Fri, 26 Oct 2001 11:07:44 +0000 Subject: Fixed warnings here. 2001-10-26 Christopher James Lahey * gal/util/e-iconv.c (e_iconv), gal/widgets/e-font.c (e_font_to_native), gal/widgets/e-unicode.c (e_utf8_from_iconv_string_sized, e_utf8_to_iconv_string_sized, e_utf8_from_gtk_string_sized, e_utf8_to_gtk_string_sized): Fixed warnings here. svn path=/trunk/; revision=14132 --- e-util/e-iconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'e-util') diff --git a/e-util/e-iconv.c b/e-util/e-iconv.c index bd85a7f599..d00c3620fb 100644 --- a/e-util/e-iconv.c +++ b/e-util/e-iconv.c @@ -421,7 +421,7 @@ iconv_t e_iconv_open(const char *oto, const char *ofrom) size_t e_iconv(iconv_t cd, const char **inbuf, size_t *inbytesleft, char ** outbuf, size_t *outbytesleft) { - return iconv(cd, inbuf, inbytesleft, outbuf, outbytesleft); + return iconv(cd, (char **) inbuf, inbytesleft, outbuf, outbytesleft); } void -- cgit v1.2.3