diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-07-11 23:31:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-12 10:25:06 +0800 |
commit | eb29179da623f9cf4abd663577395a085452ca18 (patch) | |
tree | a7eec4690f254d4cb9048ca87a5e7f401a2e74ae /e-util/e-util.c | |
parent | beb8e74577f695d0d3c2efea52dc10c2136f0135 (diff) | |
download | gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.gz gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.zst gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index 4b73fd7865..7d45709d2d 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -540,15 +540,15 @@ e_str_without_underscores (const gchar *string) new_string = g_malloc (strlen (string) + 1); dp = new_string; - for (sp = string; *sp != '\0'; sp ++) { + for (sp = string; *sp != '\0'; sp++) { if (*sp != '_') { *dp = *sp; - dp ++; + dp++; } else if (sp[1] == '_') { /* Translate "__" in "_". */ *dp = '_'; - dp ++; - sp ++; + dp++; + sp++; } } *dp = 0; @@ -687,7 +687,7 @@ e_format_number (gint number) } char_length += strlen(group); list = g_list_prepend(list, group); - group_count ++; + group_count++; } if (list) { |