diff options
author | Miles Bader <miles@gnu.org> | 1997-02-12 01:43:11 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-12 01:43:11 +0000 |
commit | 2249eea77498c8f832d8454d17fcf80907be0d8f (patch) | |
tree | 853842faa09608f51fe4c578f0ac1a74029da355 | |
parent | 294be93a83501cf89a95d615e2ef67d0389292ee (diff) |
(__argp_state_help): Use __argp_help, not argp_help.
-rw-r--r-- | libshouldbeinlibc/argp-help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libshouldbeinlibc/argp-help.c b/libshouldbeinlibc/argp-help.c index 5d20dba7..e12cf311 100644 --- a/libshouldbeinlibc/argp-help.c +++ b/libshouldbeinlibc/argp-help.c @@ -1180,8 +1180,8 @@ __argp_state_help (struct argp_state *state, FILE *stream, unsigned flags) if (state && (state->flags & ARGP_LONG_ONLY)) flags |= ARGP_HELP_LONG_ONLY; - argp_help (state ? state->argp : 0, stream, flags, - state ? state->name : __progname_full); + __argp_help (state ? state->argp : 0, stream, flags, + state ? state->name : __progname_full); if (!state || ! (state->flags & ARGP_NO_EXIT)) { |