mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtcm: NULL is not 0
This commit is contained in:
parent
2a77e84e87
commit
76b72bc6ec
3 changed files with 5 additions and 5 deletions
|
@ -1098,10 +1098,10 @@ register_names(char *name, Calendar *c)
|
|||
BlistData *bd = NULL;
|
||||
Browselist *bl = (Browselist *)c->browselist;
|
||||
CSA_return_code stat;
|
||||
CSA_session_handle cal = NULL;
|
||||
CSA_session_handle cal = 0;
|
||||
unsigned int user_access;
|
||||
CSA_calendar_user csa_user;
|
||||
CSA_flags flags = NULL;
|
||||
CSA_flags flags = 0;
|
||||
CSA_extension cb_ext;
|
||||
CSA_extension logon_ext;
|
||||
char buf[BUFSIZ];
|
||||
|
|
|
@ -2224,7 +2224,7 @@ open_initial_calendar(
|
|||
CSA_return_code *status)
|
||||
{
|
||||
char buf[MAXNAMELEN], *loc, *user;
|
||||
CSA_flags flags = NULL;
|
||||
CSA_flags flags = 0;
|
||||
CSA_extension cb_ext;
|
||||
CSA_extension logon_ext;
|
||||
CSA_calendar_user csa_user;
|
||||
|
@ -3196,7 +3196,7 @@ switch_it(Calendar *c, char *new_calendar, WindowType win)
|
|||
if (new_cal_handle != c->my_cal_handle) {
|
||||
|
||||
|
||||
CSA_flags flags = NULL;
|
||||
CSA_flags flags = 0;
|
||||
CSA_extension cb_ext;
|
||||
|
||||
flags = CSA_CB_ENTRY_ADDED | CSA_CB_ENTRY_DELETED |
|
||||
|
|
|
@ -574,7 +574,7 @@ XmPushButtonCallbackStruct *cbs;
|
|||
pr_pos xy;
|
||||
Tick end_of_time, start, stop;
|
||||
Tick_list *ptr, *next_ptr, *tail_ptr, *new_tick;
|
||||
CSA_session_handle cal = NULL;
|
||||
CSA_session_handle cal = 0;
|
||||
CSA_return_code stat;
|
||||
CSA_entry_handle *entries = NULL;
|
||||
CSA_enum *ops;
|
||||
|
|
Loading…
Reference in a new issue