From 240a7df160dc3ae48657fd1b5d86f931ef07ee20 Mon Sep 17 00:00:00 2001 From: Valentin Batz Date: Sun, 24 Jul 2005 20:01:06 +0000 Subject: [PATCH] Forgot to add the additional parameter to g_convert_with_fallback (This always happens when I'm applying patches manually :( ) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3882 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/recode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/recode.c b/src/core/recode.c index b3668ed0..0a35a06c 100644 --- a/src/core/recode.c +++ b/src/core/recode.c @@ -107,7 +107,7 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target) to = translit_to = g_strconcat(to, "//TRANSLIT", NULL); if (from) - recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL); + recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL); if (!recoded) { if (term_is_utf8) { @@ -118,7 +118,7 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target) from = "UTF-8"; if (from) - recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL); + recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL); if (!recoded) recoded = g_strdup(str);