diff options
97 files changed, 263 insertions, 262 deletions
diff --git a/argp/argp-fmtstream.c b/argp/argp-fmtstream.c index eb0a886c72..35b5b1d0fe 100644 --- a/argp/argp-fmtstream.c +++ b/argp/argp-fmtstream.c @@ -74,7 +74,7 @@ __argp_make_fmtstream (FILE *stream, if (! fs->buf) { free (fs); - fs = 0; + fs = NULL; } else { diff --git a/argp/argp-help.c b/argp/argp-help.c index cc43f376d4..5c41fdcd59 100644 --- a/argp/argp-help.c +++ b/argp/argp-help.c @@ -443,7 +443,7 @@ make_hol (const struct argp *argp, struct hol_cluster *cluster) assert (hol); hol->num_entries = 0; - hol->clusters = 0; + hol->clusters = NULL; if (opts) { @@ -615,7 +615,7 @@ static char hol_entry_first_short (const struct hol_entry *entry) { return hol_entry_short_iterate (entry, until_short, - entry->argp->argp_domain, 0); + entry->argp->argp_domain, NULL); } /* Returns the first valid long option in ENTRY, or NULL if there is none. */ @@ -627,7 +627,7 @@ hol_entry_first_long (const struct hol_entry *entry) for (opt = entry->opt, num = entry->num; num > 0; opt++, num--) if (opt->name && ovisible (opt)) return opt->name; - return 0; + return NULL; |
