diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-02-04 15:30:38 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-02-04 15:30:38 +0000 |
commit | ffe5bd693092ed66840a64d8c0164c5999fc4adb (patch) | |
tree | b17754f9c74278527cd311016b3a8ade27b2cec2 /src/core/recode.c | |
parent | 9bf5ea604906d3fa15bfbbc37dc737e1de390440 (diff) | |
download | irssi-ffe5bd693092ed66840a64d8c0164c5999fc4adb.zip |
Remove trailing whitespace.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4705 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/recode.c')
-rw-r--r-- | src/core/recode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/recode.c b/src/core/recode.c index 77ae10c5..0b1895c9 100644 --- a/src/core/recode.c +++ b/src/core/recode.c @@ -122,14 +122,14 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target) return g_strdup(str); else from = "UTF-8"; - + else { from = find_conversion(server, target); } if (translit && !is_translit(to)) to = translit_to = g_strconcat(to, "//TRANSLIT", NULL); - + if (from) recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL); @@ -200,6 +200,6 @@ void recode_init(void) } void recode_deinit(void) -{ +{ } |