diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-31 04:32:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-31 07:09:19 +0800 |
commit | ec73f5522ff2d6f8c476f02a9daaff32ef1db069 (patch) | |
tree | 14729b8cbf271405e732b84ca2ca944ceb0815e5 /e-util/e-alert.c | |
parent | c7e371bc5bc8d7898236ac36e1ea0bc08518b791 (diff) | |
download | gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.gz gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.zst gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-alert.c')
-rw-r--r-- | e-util/e-alert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-alert.c b/e-util/e-alert.c index 797ba33798..20ab3221ec 100644 --- a/e-util/e-alert.c +++ b/e-util/e-alert.c @@ -346,7 +346,7 @@ e_alert_load_tables(void) return; } - while ( (d = g_dir_read_name(dir)) ) { + while ((d = g_dir_read_name(dir))) { gchar *path; if (d[0] == '.') @@ -536,7 +536,7 @@ e_alert_append_text_escaped (GString *out, const gchar *text) { gchar c; - while ( (c=*text++) ) { + while ((c=*text++)) { if (c == '<') g_string_append(out, "<"); else if (c == '>') |