Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 21 Aug 2001 02:57:38 +0000 (02:57 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 21 Aug 2001 02:57:38 +0000 (02:57 +0000)
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.

ChangeLog
malloc/obstack.c
misc/err.c
misc/error.c

index 7cd89cb..445c75e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+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.
+
 2001-08-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
        * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Revert the
index e5c0c40..06b2fbd 100644 (file)
@@ -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);
 }
 \f
index 4c37203..1e681b3 100644 (file)
@@ -69,7 +69,7 @@ convert_and_print (const char *format, __gnuc_va_list ap)
 
          if (wformat == NULL)
            {
-             fputws (L"out of memory\n", stderr);
+             fputws_unlocked (L"out of memory\n", stderr);
              return;
            }
        }
index 1c9c4a6..aa0d8bb 100644 (file)
@@ -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;
                }
            }