aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mark-all-read/mark-all-read.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mark-all-read/mark-all-read.c')
-rw-r--r--plugins/mark-all-read/mark-all-read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mark-all-read/mark-all-read.c b/plugins/mark-all-read/mark-all-read.c
index 9cbbfdc950..5649bd8661 100644
--- a/plugins/mark-all-read/mark-all-read.c
+++ b/plugins/mark-all-read/mark-all-read.c
@@ -336,12 +336,12 @@ mark_all_as_read (CamelFolder *folder)
gint i;
uids = camel_folder_get_uids (folder);
- camel_folder_freeze(folder);
+ camel_folder_freeze (folder);
for (i=0;i<uids->len;i++)
camel_folder_set_message_flags (
folder, uids->pdata[i],
CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_SEEN);
- camel_folder_thaw(folder);
+ camel_folder_thaw (folder);
camel_folder_free_uids (folder, uids);
}