diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-21 02:57:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-21 02:57:38 +0000 |
commit | 34ef548a3770131a03cf55866caedc8c50793617 (patch) | |
tree | 0e630f982564334fbeba4e513d9015db248537cc /misc/error.c | |
parent | 62ed552b937bc0367df22207d316c14614e94421 (diff) | |
download | glibc-34ef548a3770131a03cf55866caedc8c50793617.zip glibc-34ef548a3770131a03cf55866caedc8c50793617.tar.gz glibc-34ef548a3770131a03cf55866caedc8c50793617.tar.bz2 |
Update.
2001-08-20 Ulrich Drepper <drepper@redhat.com>
* misc/error.c (error_tail): Use fputws_unlocked instead of fputws.
* misc/err.c (convert_and_print): Likewise.
* malloc/obstack.c (print_and_abort): Use fprintf instead of two
function calls.
Diffstat (limited to 'misc/error.c')
-rw-r--r-- | misc/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/error.c b/misc/error.c index 1c9c4a6..aa0d8bb 100644 --- a/misc/error.c +++ b/misc/error.c @@ -151,7 +151,7 @@ error_tail (int status, int errnum, const char *message, va_list args) if (wmessage == NULL) { - fputws (L"out of memory\n", stderr); + fputws_unlocked (L"out of memory\n", stderr); return; } } |