diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2002-10-23 01:04:47 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2002-10-23 01:04:47 +0800 |
commit | b6ca9198e820a5d0ca35bf497b957bd199f03c82 (patch) | |
tree | 55f8f9585ac282d2552923f146a1a9a8abd77ab3 /calendar | |
parent | 731caf5eb269c46696c1cacf63a8e088d0464d93 (diff) | |
download | gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.tar gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.tar.gz gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.tar.bz2 gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.tar.lz gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.tar.xz gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.tar.zst gsoc2013-evolution-b6ca9198e820a5d0ca35bf497b957bd199f03c82.zip |
use NULL for pointer instead of FALSE.
2002-10-22 Rodrigo Moya <rodrigo@ximian.com>
* pcs/cal-factory.c (lookup_backend): use NULL for pointer instead of
FALSE.
svn path=/trunk/; revision=18411
Diffstat (limited to 'calendar')
-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; } |