(print_unicode_char): Remove `const' from declaration of
authorJim Meyering <jim@meyering.net>
Wed, 3 Jan 2001 10:08:43 +0000 (10:08 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 3 Jan 2001 10:08:43 +0000 (10:08 +0000)
local `inptr' to avoid warning with some system declarations of iconv.

lib/unicodeio.c

index 1388852..2d11db2 100644 (file)
@@ -158,7 +158,7 @@ print_unicode_char (FILE *stream, unsigned int code)
     {
 #if HAVE_ICONV
       char outbuf[25];
-      const char *inptr;
+      char *inptr;
       size_t inbytesleft;
       char *outptr;
       size_t outbytesleft;