commit bc299e87d050f7c6a4baac3c12c6e27fb7125f60
parent 625e50810fc994bfbb938c804cc18c6d31184732
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 9 Jul 2005 15:28:15 +0000
sync
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/convert.c b/src/plugins/convert.c
@@ -43,7 +43,7 @@ char * convertToUtf8(const char * input,
i = input;
cd = iconv_open("UTF-8", charset);
- if (cd == (iconv_t) -1)
+ if (cd == (iconv_t) -1)
return strdup(i);
tmpSize = 3 * len + 4;
tmp = malloc(tmpSize);