mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 17:53:37 +08:00
Update.
* argp/argp-help.c: Fix two problems introduced in last change.
This commit is contained in:
parent
0028f16e8a
commit
29f0517d46
@ -1,5 +1,7 @@
|
||||
2001-08-20 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* argp/argp-help.c: Fix two problems introduced in last change.
|
||||
|
||||
* include/dirent.h: Include <dirstream.h> first.
|
||||
|
||||
2001-08-19 Ulrich Drepper <drepper@redhat.com>
|
||||
|
@ -1768,9 +1768,8 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
|
||||
|
||||
#ifdef USE_IN_LIBIO
|
||||
if (_IO_fwide (stream, 0) > 0)
|
||||
fputws_unlocked (state
|
||||
? state->name : program_invocation_short_name,
|
||||
stream);
|
||||
__fwprintf (stream, L"%s",
|
||||
state ? state->name : program_invocation_short_name);
|
||||
else
|
||||
#endif
|
||||
fputs_unlocked (state
|
||||
@ -1811,7 +1810,7 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
|
||||
|
||||
#ifdef USE_IN_LIBIO
|
||||
if (_IO_fwide (stream, 0) > 0)
|
||||
__fwprintf (stream, ": %s",
|
||||
__fwprintf (stream, L": %s",
|
||||
__strerror_r (errnum, buf, sizeof (buf)));
|
||||
else
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user