aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-12-07 22:30:49 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-12-07 23:04:45 +0800
commit7b98c39b0adecc942c091d293032851149107dbc (patch)
tree8588a63b94eebcb0ad06cab29dee3ee5474e4d3e /shell
parentc9edf5ef1f8cba1556fabfa9234b5cb155b59ceb (diff)
downloadgsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.gz
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.bz2
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.lz
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.xz
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.zst
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.zip
Coding style and whitespace cleanup.
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);