aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/e-convert-local-mail.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/shell/e-convert-local-mail.c b/shell/e-convert-local-mail.c
index ab773813d1..7cde47848d 100644
--- a/shell/e-convert-local-mail.c
+++ b/shell/e-convert-local-mail.c
@@ -173,8 +173,9 @@ rename_mbox_dir (ESource *mbox_source,
if (need_rename) {
if (g_rename (old_mail_dir, new_mail_dir) == -1)
- g_warning ("%s: Failed to rename '%s' to '%s': %s",
- G_STRFUNC, old_mail_dir, new_mail_dir, g_strerror (errno));
+ g_warning (
+ "%s: Failed to rename '%s' to '%s': %s",
+ G_STRFUNC, old_mail_dir, new_mail_dir, g_strerror (errno));
}
g_free (old_mail_dir);
@@ -253,8 +254,9 @@ migrate_mbox_to_maildir (EShell *shell,
path = g_build_filename (data_dir, "local", NULL);
g_object_set (settings, "path", path, NULL);
if (g_mkdir (path, 0700) == -1)
- g_warning ("%s: Failed to make directory '%s': %s",
- G_STRFUNC, path, g_strerror (errno));
+ g_warning (
+ "%s: Failed to make directory '%s': %s",
+ G_STRFUNC, path, g_strerror (errno));
g_free (path);
g_object_unref (settings);