diff options
author | Miles Bader <miles@gnu.org> | 1996-05-09 15:35:26 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-05-09 15:35:26 +0000 |
commit | b6cce72c9576b9aa1ce131fb8106bfd36766baa2 (patch) | |
tree | 7b466ba3a0b9c18c3e7553e1f32ad0b1d3bbcf1b /libshouldbeinlibc | |
parent | ecc47c65ea7706adb33458be1a16931f919b7638 (diff) |
(argp_help): Just assign STREAM instead of using 2 vars.
Diffstat (limited to 'libshouldbeinlibc')
-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 9f6ea8e5..3a5d4ae0 100644 --- a/libshouldbeinlibc/argp-help.c +++ b/libshouldbeinlibc/argp-help.c @@ -713,12 +713,12 @@ argp_doc (const struct argp *argp, FILE *stream) /* Output a usage message for ARGP to STREAM. FLAGS are from the set ARGP_HELP_*. */ -void argp_help (const struct argp *argp, FILE *streamarg, unsigned flags) +void argp_help (const struct argp *argp, FILE *stream, unsigned flags) { int first = 1; struct hol *hol = 0; - FILE *stream = line_wrap_stream (streamarg, 0, RMARGIN, 0); + stream = line_wrap_stream (stream, 0, RMARGIN, 0); assert (stream); if (flags & (ARGP_HELP_USAGE | ARGP_HELP_SHORT_USAGE | ARGP_HELP_LONG)) |