diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-06 22:47:05 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-06 22:47:05 +0800 |
commit | 9720adbb52c32f1099ebeccc7c654144fdb3b922 (patch) | |
tree | f42956876abf48c08227546d2ce7dde18d6611fc /camel | |
parent | a0c1a491f146e480589496c0714a9be6857d2c26 (diff) | |
download | gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.tar gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.tar.gz gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.tar.bz2 gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.tar.lz gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.tar.xz gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.tar.zst gsoc2013-evolution-9720adbb52c32f1099ebeccc7c654144fdb3b922.zip |
Fixes for bug #39170
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.
svn path=/trunk/; revision=20188
Diffstat (limited to 'camel')
-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 * |