View | Details | Raw Unified | Return to bug 268815
Collapse All | Expand All

(-)b/japanese/kakasi/files/patch-src_kanjiio.c (+16 lines)
Added Link Here
1
--- src/kanjiio.c.orig	2013-02-07 07:26:18 UTC
2
+++ src/kanjiio.c
3
@@ -1080,11 +1080,11 @@ close_iconv()
4
 {
5
     if (fromutf8 != -1) {
6
 	iconv_close(fromutf8);
7
-	fromutf8 = -1;
8
+	fromutf8 = (iconv_t) -1;
9
     }
10
     if (toutf8 != -1) {
11
 	iconv_close(toutf8);
12
-	toutf8 = -1;
13
+	toutf8 = (iconv_t) -1;
14
     }
15
 }
16
 #endif /* KAKASI_SUPPORT_UTF8 */

Return to bug 268815