diff options
author | Valentin Batz <senneth@irssi.org> | 2005-07-24 20:01:06 +0000 |
---|---|---|
committer | vb <vb@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2005-07-24 20:01:06 +0000 |
commit | 240a7df160dc3ae48657fd1b5d86f931ef07ee20 (patch) | |
tree | 6cc343347b3639ea18f7244190b159f1cea248c6 /src | |
parent | 56041a314402b93835ce26e8a4d1e49db34e0c72 (diff) | |
download | irssi-240a7df160dc3ae48657fd1b5d86f931ef07ee20.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/core/recode.c | 4 |
1 files 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); |