diff options
-rw-r--r-- | camel/ChangeLog | 13 | ||||
-rw-r--r-- | camel/camel-index.c | 2 | ||||
-rw-r--r-- | camel/camel-session.c | 4 | ||||
-rw-r--r-- | camel/camel-store-summary.c | 2 |
4 files changed, 17 insertions, 4 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 85b6c9a7bc..86913acb7e 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,18 @@ 2003-03-06 Jeffrey Stedfast <fejj@ximian.com> + Fixes for bug #39170 + + * camel-store-summary.c (camel_store_info_set_string): Remove + return keyword. + + * camel-session.c (camel_session_thread_msg_free): Remove return + keyword. + (camel_session_thread_wait): Same. + + * camel-index.c (camel_index_cursor_reset): Remove return keyword. + +2003-03-06 Jeffrey Stedfast <fejj@ximian.com> + Fixes for bug #39168 * providers/local/camel-spool-summary.c: Get rid of the empty diff --git a/camel/camel-index.c b/camel/camel-index.c index ea7a63fe08..6a7cba6afe 100644 --- a/camel/camel-index.c +++ b/camel/camel-index.c @@ -391,6 +391,6 @@ camel_index_cursor_next(CamelIndexCursor *idc) void camel_index_cursor_reset(CamelIndexCursor *idc) { - return CIC_CLASS(idc)->reset(idc); + CIC_CLASS(idc)->reset(idc); } 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 diff --git a/camel/camel-store-summary.c b/camel/camel-store-summary.c index 87a0611d3f..75d2a3501f 100644 --- a/camel/camel-store-summary.c +++ b/camel/camel-store-summary.c @@ -795,7 +795,7 @@ const char *camel_store_info_string(CamelStoreSummary *s, const CamelStoreInfo * void camel_store_info_set_string(CamelStoreSummary *s, CamelStoreInfo *mi, int type, const char *value) { - return ((CamelStoreSummaryClass *)(CAMEL_OBJECT_GET_CLASS(s)))->store_info_set_string(s, mi, type, value); + ((CamelStoreSummaryClass *)(CAMEL_OBJECT_GET_CLASS(s)))->store_info_set_string(s, mi, type, value); } static CamelStoreInfo * |