diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-09-04 19:34:32 +0800 |
commit | fcbbdfbd18e15b4ee8322a0217cf03a689a5e033 (patch) | |
tree | e16cd2a2279558c6a2bfb6ca39fcbaac4c85ba59 /mail/mail-mt.c | |
parent | f78417c48861759d7b0c4535ecd3febe4638a7d3 (diff) | |
download | gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.gz gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.zst gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c index 724498c359..d904eed546 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -303,7 +303,8 @@ mail_msg_active (void) static GHookList cancel_hook_list; GHook * -mail_cancel_hook_add (GHookFunc func, gpointer data) +mail_cancel_hook_add (GHookFunc func, + gpointer data) { GHook *hook; @@ -440,7 +441,8 @@ mail_msg_init (void) } static gint -mail_msg_compare (const MailMsg *msg1, const MailMsg *msg2) +mail_msg_compare (const MailMsg *msg1, + const MailMsg *msg2) { gint priority1 = msg1->priority; gint priority2 = msg2->priority; @@ -598,7 +600,9 @@ static MailMsgInfo mail_call_info = { }; gpointer -mail_call_main (mail_call_t type, MailMainFunc func, ...) +mail_call_main (mail_call_t type, + MailMainFunc func, + ...) { GCancellable *cancellable; struct _call_msg *m; |