From 34ef548a3770131a03cf55866caedc8c50793617 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Aug 2001 02:57:38 +0000 Subject: Update. 2001-08-20 Ulrich Drepper * 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. --- malloc/obstack.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'malloc/obstack.c') diff --git a/malloc/obstack.c b/malloc/obstack.c index e5c0c40de4..06b2fbd534 100644 --- a/malloc/obstack.c +++ b/malloc/obstack.c @@ -489,10 +489,7 @@ print_and_abort () __fwprintf (stderr, L"%s\n", _("memory exhausted")); else #endif - { - fputs (_("memory exhausted"), stderr); - fputc ('\n', stderr); - } + fprintf (stderr, "%s\n", _("memory exhausted")); exit (obstack_exit_failure); } -- cgit v1.2.3