From e59a8b41e73aba7deeccfbe56fe0af3f97b36f37 Mon Sep 17 00:00:00 2001 From: Richard Kunze Date: Tue, 18 Nov 2014 01:20:10 +0100 Subject: [PATCH] Fixed iconv handle type Signed-off-by: Richard Kunze --- src/intlconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intlconv.c b/src/intlconv.c index fb427e7f..eebee769 100644 --- a/src/intlconv.c +++ b/src/intlconv.c @@ -5,7 +5,7 @@ typedef struct intlconv_cache { RB_ENTRY(intlconv_cache) ic_link; char *ic_charset_id; - iconv_t *ic_handle; + iconv_t ic_handle; } intlconv_cache_t; static RB_HEAD(,intlconv_cache) intlconv_all;