From: Richard Kunze Date: Tue, 18 Nov 2014 00:20:10 +0000 (+0100) Subject: Fixed iconv handle type X-Git-Tag: v4.1~732 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e59a8b41e73aba7deeccfbe56fe0af3f97b36f37;p=thirdparty%2Ftvheadend.git Fixed iconv handle type Signed-off-by: Richard Kunze --- diff --git a/src/intlconv.c b/src/intlconv.c index fb427e7f8..eebee7692 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;