aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-index.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-03-06 22:47:05 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-03-06 22:47:05 +0800
commit9720adbb52c32f1099ebeccc7c654144fdb3b922 (patch)
treef42956876abf48c08227546d2ce7dde18d6611fc /camel/camel-index.c
parenta0c1a491f146e480589496c0714a9be6857d2c26 (diff)
downloadgsoc2013-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/camel-index.c')
-rw-r--r--camel/camel-index.c2
1 files changed, 1 insertions, 1 deletions
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);
}