diff options
author | Srinivasa Ragavan <sragavan@gnome.org> | 2009-11-04 22:29:07 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@gnome.org> | 2009-11-05 00:15:04 +0800 |
commit | e2e50af52cbe7b58636b9a02b852696413f95f51 (patch) | |
tree | 914f57c0e684151551fe8723ead5ad3de691c6db /mail | |
parent | b958de6faac3361452395a275ccf813365c29da7 (diff) | |
download | gsoc2013-evolution-e2e50af52cbe7b58636b9a02b852696413f95f51.tar.gz gsoc2013-evolution-e2e50af52cbe7b58636b9a02b852696413f95f51.tar.zst gsoc2013-evolution-e2e50af52cbe7b58636b9a02b852696413f95f51.zip |
Fix a compiler error
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index cc45b42901..2de8f6de38 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -633,7 +633,7 @@ mail_send_message (struct _send_queue_msg *m, CamelFolder *queue, const gchar *u if (!camel_exception_is_set(ex)) { camel_folder_set_message_flags (queue, uid, CAMEL_MESSAGE_DELETED|CAMEL_MESSAGE_SEEN, ~0); /* Sync it to disk, since if it crashes in between, we keep sending it again on next start. */ - camel_folder_sync (queue, FALSE); + camel_folder_sync (queue, FALSE, NULL); } if (err->len) { |