]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fixed iconv handle type
authorRichard Kunze <richard.kunze@web.de>
Tue, 18 Nov 2014 00:20:10 +0000 (01:20 +0100)
committerJaroslav Kysela <perex@perex.cz>
Wed, 19 Nov 2014 12:04:54 +0000 (13:04 +0100)
Signed-off-by: Richard Kunze <richard.kunze@web.de>
src/intlconv.c

index fb427e7f883b566f0d9ecf39095d9e1efcf58f40..eebee76926e00bee79fdbfc8c3eb52ddd2c3f678 100644 (file)
@@ -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;