summaryrefslogtreecommitdiff
path: root/libshouldbeinlibc/argp-help.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-02-12 01:43:11 +0000
committerMiles Bader <miles@gnu.org>1997-02-12 01:43:11 +0000
commit2249eea77498c8f832d8454d17fcf80907be0d8f (patch)
tree853842faa09608f51fe4c578f0ac1a74029da355 /libshouldbeinlibc/argp-help.c
parent294be93a83501cf89a95d615e2ef67d0389292ee (diff)
(__argp_state_help): Use __argp_help, not argp_help.
Diffstat (limited to 'libshouldbeinlibc/argp-help.c')
-rw-r--r--libshouldbeinlibc/argp-help.c4
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))
{