Fixes 271838
authorThe Written Word <bugzilla-novell@thewrittenword.com>
Fri, 13 May 2005 07:11:15 +0000 (07:11 +0000)
committerRodrigo Moya <rodrigo@src.gnome.org>
Fri, 13 May 2005 07:11:15 +0000 (07:11 +0000)
2005-05-13  The Written Word <bugzilla-novell@thewrittenword.com>

Fixes 271838

* libedata-cal/e-cal-backend.c (e_cal_backend_get_object_list):
don't return value from void function.

calendar/ChangeLog
calendar/libedata-cal/e-cal-backend.c

index a3c4471..eee9a44 100644 (file)
@@ -1,3 +1,10 @@
+2005-05-13  The Written Word <bugzilla-novell@thewrittenword.com>
+
+       Fixes 271838
+
+       * libedata-cal/e-cal-backend.c (e_cal_backend_get_object_list):
+       don't return value from void function.
+
 2005-05-13  Shreyas Srinivasan <sshreyas@novell.com>
 
        * backends/contacts/e-cal-backend-contacts.c: Fix #256874
index 742ee53..1379e49 100644 (file)
@@ -758,7 +758,7 @@ e_cal_backend_get_object_list (ECalBackend *backend, EDataCal *cal, const char *
        g_return_if_fail (E_IS_CAL_BACKEND (backend));
 
        g_assert (CLASS (backend)->get_object_list != NULL);
-       return (* CLASS (backend)->get_object_list) (backend, cal, sexp);
+       (* CLASS (backend)->get_object_list) (backend, cal, sexp);
 }
 
 /**