diff options
Diffstat (limited to 'camel/camel-session.c')
-rw-r--r-- | camel/camel-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-session.c b/camel/camel-session.c index 1d45e9661b..39ac4167ee 100644 --- a/camel/camel-session.c +++ b/camel/camel-session.c @@ -832,7 +832,7 @@ void camel_session_thread_msg_free(CamelSession *session, CamelSessionThreadMsg g_assert(msg != NULL); g_assert(msg->ops != NULL); - return CS_CLASS (session)->thread_msg_free(session, msg); + CS_CLASS (session)->thread_msg_free(session, msg); } /** @@ -869,7 +869,7 @@ void camel_session_thread_wait(CamelSession *session, int id) if (id == -1) return; - return CS_CLASS (session)->thread_wait(session, id); + CS_CLASS (session)->thread_wait(session, id); } #endif |