From 29f0517d466970022c64994257c6cdfc70ccb604 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 20 Aug 2001 19:55:53 +0000 Subject: Update. * argp/argp-help.c: Fix two problems introduced in last change. --- argp/argp-help.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'argp') diff --git a/argp/argp-help.c b/argp/argp-help.c index fccc8335b8..e51825c28b 100644 --- a/argp/argp-help.c +++ b/argp/argp-help.c @@ -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 -- cgit 1.4.1