diff options
author | Joe Shaw <joe@helixcode.com> | 2000-08-03 10:39:49 +0800 |
---|---|---|
committer | Joe Shaw <joeshaw@src.gnome.org> | 2000-08-03 10:39:49 +0800 |
commit | f25cc16f180a1cb6804fe63a7382540bb204c2fc (patch) | |
tree | 227e2879b0258d1d143c944afc3294ee6b6abb8b | |
parent | baa5d868377f98385bfe7c47ba38ffaf8ae51d1d (diff) | |
download | gsoc2013-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
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/pcs/cal-backend-file.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 081a3609a3..23b3479747 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +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. + 2000-08-03 Damon Chaplin <damon@helixcode.com> * gui/calendar-model.c (calendar_model_append_row): updated to match 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); |