aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs
diff options
context:
space:
mode:
authorJoe Shaw <joe@helixcode.com>2000-08-03 10:39:49 +0800
committerJoe Shaw <joeshaw@src.gnome.org>2000-08-03 10:39:49 +0800
commitf25cc16f180a1cb6804fe63a7382540bb204c2fc (patch)
tree227e2879b0258d1d143c944afc3294ee6b6abb8b /calendar/pcs
parentbaa5d868377f98385bfe7c47ba38ffaf8ae51d1d (diff)
downloadgsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.tar
gsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.tar.gz
gsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.tar.bz2
gsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.tar.lz
gsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.tar.xz
gsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.tar.zst
gsoc2013-evolution-f25cc16f180a1cb6804fe63a7382540bb204c2fc.zip
Fixed a g_return_if_fail that had two parameters and thus wouldn't build.
2000-08-02 Joe Shaw <joe@helixcode.com> * pcs/cal-backend-file.c (cal_backend_file_update_pilot_id): Fixed a g_return_if_fail that had two parameters and thus wouldn't build. svn path=/trunk/; revision=4502
Diffstat (limited to 'calendar/pcs')
-rw-r--r--calendar/pcs/cal-backend-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/pcs/cal-backend-file.c b/calendar/pcs/cal-backend-file.c
index 803ec0625e..f23024cec6 100644
--- a/calendar/pcs/cal-backend-file.c
+++ b/calendar/pcs/cal-backend-file.c
@@ -1032,7 +1032,7 @@ cal_backend_file_update_pilot_id (CalBackend *backend,
cbfile = CAL_BACKEND_FILE (backend);
priv = cbfile->priv;
- g_return_if_fail (priv->icalcomp != NULL, FALSE);
+ g_return_if_fail (priv->icalcomp != NULL);
g_return_if_fail (uid != NULL);