From 7b98c39b0adecc942c091d293032851149107dbc Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 7 Dec 2013 09:30:49 -0500 Subject: Coding style and whitespace cleanup. --- libemail-engine/mail-folder-cache.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'libemail-engine/mail-folder-cache.c') 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); -- cgit v1.2.3