Browse Source

iconv/tst-iconv5: fix ic variable type

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Max Filippov 1 year ago
parent
commit
71e7a6feec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/iconv/tst-iconv5.c

+ 1 - 1
test/iconv/tst-iconv5.c

@@ -59,7 +59,7 @@ static int
 convert (const char *tocode, const char *fromcode, char *inbufp,
 	 size_t inbytesleft, char *outbufp, size_t outbytesleft)
 {
-  iconv_t *ic;
+  iconv_t ic;
   size_t outbytes = outbytesleft;
   int ret;