# HG changeset patch # User Jim Meyering # Date 980070043 0 # Node ID f65bb2158462fb44e28eccdddf41bef3328a01ae # Parent b2b1e6be382406f404a4b05e600e53db3610b99b (print_unicode_char): Cast the second iconv() arg, to avoid a warning. Add back 'const' to inptr. diff --git a/lib/unicodeio.c b/lib/unicodeio.c --- a/lib/unicodeio.c +++ b/lib/unicodeio.c @@ -158,7 +158,7 @@ { #if HAVE_ICONV char outbuf[25]; - char *inptr; + const char *inptr; size_t inbytesleft; char *outptr; size_t outbytesleft; @@ -170,7 +170,9 @@ outbytesleft = sizeof (outbuf); /* Convert the character from UTF-8 to the locale's charset. */ - res = iconv (utf8_to_local, &inptr, &inbytesleft, &outptr, &outbytesleft); + res = iconv (utf8_to_local, + (ICONV_CONST char **)&inptr, &inbytesleft, + &outptr, &outbytesleft); if (inbytesleft > 0 || res == (size_t)(-1) /* Irix iconv() inserts a NUL byte if it cannot convert. */ # if !defined _LIBICONV_VERSION && (defined sgi || defined __sgi)