diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/pcs/cal-factory.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index e02fe5eea4..d0a839ba79 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2002-10-22 Rodrigo Moya <rodrigo@ximian.com> + + * pcs/cal-factory.c (lookup_backend): use NULL for pointer instead of + FALSE. + 2002-10-22 JP Rosevear <jpr@ximian.com> * gui/itip-utils.c (get_address): use e_config_listener_* to get values diff --git a/calendar/pcs/cal-factory.c b/calendar/pcs/cal-factory.c index 4f79e5d1f3..4c5ea41db1 100644 --- a/calendar/pcs/cal-factory.c +++ b/calendar/pcs/cal-factory.c @@ -132,7 +132,7 @@ lookup_backend (CalFactory *factory, const char *uristr, char **orig_uri_return) return CAL_BACKEND (data); } else { if (orig_uri_return) - *orig_uri_return = FALSE; + *orig_uri_return = NULL; return NULL; } |