mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00: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>
|
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.
|
* include/dirent.h: Include <dirstream.h> first.
|
||||||
|
|
||||||
2001-08-19 Ulrich Drepper <drepper@redhat.com>
|
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
|
#ifdef USE_IN_LIBIO
|
||||||
if (_IO_fwide (stream, 0) > 0)
|
if (_IO_fwide (stream, 0) > 0)
|
||||||
fputws_unlocked (state
|
__fwprintf (stream, L"%s",
|
||||||
? state->name : program_invocation_short_name,
|
state ? state->name : program_invocation_short_name);
|
||||||
stream);
|
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
fputs_unlocked (state
|
fputs_unlocked (state
|
||||||
@ -1811,7 +1810,7 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
|
|||||||
|
|
||||||
#ifdef USE_IN_LIBIO
|
#ifdef USE_IN_LIBIO
|
||||||
if (_IO_fwide (stream, 0) > 0)
|
if (_IO_fwide (stream, 0) > 0)
|
||||||
__fwprintf (stream, ": %s",
|
__fwprintf (stream, L": %s",
|
||||||
__strerror_r (errnum, buf, sizeof (buf)));
|
__strerror_r (errnum, buf, sizeof (buf)));
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user