aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/pcs/cal-backend-file.c2
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);