diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-06 01:33:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-03-06 01:34:28 +0800 |
commit | c6fd77460f5baf88528f5da2ffb99e86a2885ff0 (patch) | |
tree | 377ddb36bc9c907a06d5889123582b2066db42a8 /e-util/e-unicode.c | |
parent | 29d8b02c557a65aec4b015b274a830b402da2cfd (diff) | |
download | gsoc2013-evolution-c6fd77460f5baf88528f5da2ffb99e86a2885ff0.tar.gz gsoc2013-evolution-c6fd77460f5baf88528f5da2ffb99e86a2885ff0.tar.zst gsoc2013-evolution-c6fd77460f5baf88528f5da2ffb99e86a2885ff0.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-unicode.c')
-rw-r--r-- | e-util/e-unicode.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/e-util/e-unicode.c b/e-util/e-unicode.c index 46d6a6c996..0fc5a8b5da 100644 --- a/e-util/e-unicode.c +++ b/e-util/e-unicode.c @@ -168,7 +168,8 @@ e_utf8_to_iconv_string_sized (iconv_t ic, const gchar *string, gint bytes) ibl = bytes - (ib - string); if (ibl > bytes) ibl = 0; - /* FIXME: this is wrong... what if the destination charset is 16 or 32 bit? */ + /* FIXME This is wrong. What if the destination + * charset is 16 or 32 bit? */ *ob++ = '_'; obl--; } @@ -181,7 +182,9 @@ e_utf8_to_iconv_string_sized (iconv_t ic, const gchar *string, gint bytes) } gchar * -e_utf8_to_charset_string_sized (const gchar *charset, const gchar *string, gint bytes) +e_utf8_to_charset_string_sized (const gchar *charset, + const gchar *string, + gint bytes) { iconv_t ic; gchar *ret; |