diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2024-05-01 05:15:04 -0700 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-03 06:35:19 +0200 |
commit | 71e7a6feeca4ccc1bcb8c8469f0a7152ac936474 (patch) | |
tree | 585a0464312140883fd3c28d12f1fe0e16c5a2e1 /test | |
parent | a745b328b61e678ea067cde1f6b62964f7655354 (diff) |
iconv/tst-iconv5: fix ic variable type
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/iconv/tst-iconv5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/iconv/tst-iconv5.c b/test/iconv/tst-iconv5.c index ff3fde5..f8f4fb5 100644 --- a/test/iconv/tst-iconv5.c +++ b/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; |