]> gcc.gnu.org Git - gcc.git/commitdiff
* xmalloc.c (xmalloc_fail): Clarify error message further.
authorNeil Booth <neil@daikokuya.demon.co.uk>
Mon, 4 Mar 2002 21:22:52 +0000 (21:22 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Mon, 4 Mar 2002 21:22:52 +0000 (21:22 +0000)
From-SVN: r50287

libiberty/ChangeLog
libiberty/xmalloc.c

index 0cc30bd4f70ec9ed02ae015ce485e909b5cd4abd..0334c35d9b9140019fe22f35ccc6538d92203096 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-04  Neil Booth  <neil@daikokuya.demon.co.uk>
+
+       * xmalloc.c (xmalloc_fail): Clarify error message further.
+
 2002-03-03  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * xmalloc.c (xmalloc_fail): Clarify error message.
index 433fd5ce3f3e393aa44c120b5d027808bb125e96..4c8249ae70bfaaafcd56f64129e0c7ea5c1ecf9e 100644 (file)
@@ -120,7 +120,7 @@ xmalloc_failed (size)
   else
     allocated = (char *) sbrk (0) - (char *) &environ;
   fprintf (stderr,
-          "\n%s%sout of memory allocating %lu bytes after allocating %lu bytes\n",
+          "\n%s%sout of memory allocating %lu bytes after a total of %lu bytes\n",
           name, *name ? ": " : "",
           (unsigned long) size, (unsigned long) allocated);
 #else /* HAVE_SBRK */
This page took 0.081157 seconds and 5 git commands to generate.