From c0b97459ad4fa970c5adb94c68fe77de96e7f095 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 18 Mar 2011 12:57:02 -0400 Subject: [PATCH] Coding style and whitespace cleanup. --- camel/providers/local/camel-maildir-store.c | 6 +++--- libedataserver/e-account.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/camel/providers/local/camel-maildir-store.c b/camel/providers/local/camel-maildir-store.c index d0441d7..b39ef1f 100644 --- a/camel/providers/local/camel-maildir-store.c +++ b/camel/providers/local/camel-maildir-store.c @@ -179,9 +179,9 @@ maildir_store_get_folder_sync (CamelStore *store, if (!g_ascii_strcasecmp (folder_name, "Inbox")) { /* special case "." (aka inbox), may need to be created */ - if (g_stat(tmp, &st) != 0 || !S_ISDIR(st.st_mode) - || g_stat (cur, &st) != 0 || !S_ISDIR(st.st_mode) - || g_stat (new, &st) != 0 || !S_ISDIR(st.st_mode)) { + if (g_stat (tmp, &st) != 0 || !S_ISDIR (st.st_mode) + || g_stat (cur, &st) != 0 || !S_ISDIR (st.st_mode) + || g_stat (new, &st) != 0 || !S_ISDIR (st.st_mode)) { if (g_mkdir (tmp, 0700) != 0 || g_mkdir (cur, 0700) != 0 || g_mkdir (new, 0700) != 0) { diff --git a/libedataserver/e-account.h b/libedataserver/e-account.h index 921920c..53b45b3 100644 --- a/libedataserver/e-account.h +++ b/libedataserver/e-account.h @@ -192,7 +192,7 @@ void e_account_set_bool (EAccount *account, e_account_item_t type, gboolean v_bool); gboolean e_account_writable (EAccount *account, - e_account_item_t type); + e_account_item_t type); gboolean e_account_writable_option (EAccount *account, const gchar *protocol, const gchar *option); -- 2.7.4