diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-12-07 22:30:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-12-07 23:04:45 +0800 |
commit | 7b98c39b0adecc942c091d293032851149107dbc (patch) | |
tree | 8588a63b94eebcb0ad06cab29dee3ee5474e4d3e /libemail-engine | |
parent | c9edf5ef1f8cba1556fabfa9234b5cb155b59ceb (diff) | |
download | gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.gz gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.zst gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'libemail-engine')
-rw-r--r-- | libemail-engine/mail-folder-cache.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libemail-engine/mail-folder-cache.c b/libemail-engine/mail-folder-cache.c index 37e19706e6..bcf74bb0af 100644 --- a/libemail-engine/mail-folder-cache.c +++ b/libemail-engine/mail-folder-cache.c @@ -1156,16 +1156,18 @@ rename_folders (MailFolderCache *cache, oldfile = g_strdup_printf ("%s/custom_view-%s.xml", config_dir, olduri); newfile = g_strdup_printf ("%s/custom_view-%s.xml", config_dir, newuri); if (g_rename (oldfile, newfile) == -1) { - g_warning ("%s: Failed to rename '%s' to '%s': %s", G_STRFUNC, - oldfile, newfile, g_strerror (errno)); + g_warning ( + "%s: Failed to rename '%s' to '%s': %s", G_STRFUNC, + oldfile, newfile, g_strerror (errno)); } g_free (oldfile); g_free (newfile); oldfile = g_strdup_printf ("%s/current_view-%s.xml", config_dir, olduri); newfile = g_strdup_printf ("%s/current_view-%s.xml", config_dir, newuri); if (g_rename (oldfile, newfile) == -1) { - g_warning ("%s: Failed to rename '%s' to '%s': %s", G_STRFUNC, - oldfile, newfile, g_strerror (errno)); + g_warning ( + "%s: Failed to rename '%s' to '%s': %s", G_STRFUNC, + oldfile, newfile, g_strerror (errno)); } g_free (oldfile); g_free (newfile); |