diff options
author | Fabiano FidĂȘncio <fidencio@redhat.com> | 2013-11-11 20:18:35 +0800 |
---|---|---|
committer | Fabiano FidĂȘncio <fidencio@redhat.com> | 2013-11-11 20:18:54 +0800 |
commit | 7a488efbb38b623b9c9658ed4350d7e263a89d71 (patch) | |
tree | 4a2c535be88bfc0a9c7290102a237c69166c1229 | |
parent | 197b9f827619281e6ba0903d771d94e93487986e (diff) | |
download | gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.tar gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.tar.gz gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.tar.bz2 gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.tar.lz gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.tar.xz gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.tar.zst gsoc2013-evolution-7a488efbb38b623b9c9658ed4350d7e263a89d71.zip |
Bug #711835 - Clang build in broken: void function 'cal_comp_transfer_item_to' should not return a value
-rw-r--r-- | calendar/gui/comp-util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/comp-util.c b/calendar/gui/comp-util.c index a5c231e0eb..b2569d53bb 100644 --- a/calendar/gui/comp-util.c +++ b/calendar/gui/comp-util.c @@ -913,9 +913,9 @@ cal_comp_transfer_item_to (ECalClient *src_client, GSimpleAsyncResult *simple; AsyncContext *async_context; - g_return_val_if_fail (E_IS_CAL_CLIENT (src_client), FALSE); - g_return_val_if_fail (E_IS_CAL_CLIENT (dest_client), FALSE); - g_return_val_if_fail (icalcomp_vcal != NULL, FALSE); + g_return_if_fail (E_IS_CAL_CLIENT (src_client)); + g_return_if_fail (E_IS_CAL_CLIENT (dest_client)); + g_return_if_fail (icalcomp_vcal != NULL); async_context = g_slice_new0 (AsyncContext); async_context->src_client = g_object_ref (src_client); |