xmalloc.c (xmalloc): Fix spelling error.
authorMark Mitchell <mark@codesourcery.com>
Sun, 3 Oct 1999 01:55:59 +0000 (01:55 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sun, 3 Oct 1999 01:55:59 +0000 (01:55 +0000)
* xmalloc.c (xmalloc): Fix spelling error.
(xcalloc, xrealloc): Likewise.

From-SVN: r29779

libiberty/ChangeLog
libiberty/xmalloc.c

index 468d4d65a83582a8038689e82961d20fd150fa28..b0c99e317abe34fcb69a6d6ed9119d569fa41201 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-02  Mark Mitchell  <mark@codesourcery.com>
+
+       * xmalloc.c (xmalloc): Fix spelling error.
+       (xcalloc, xrealloc): Likewise.
+
 1999-10-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * cplus-dem.c (fancy_abort, demangle_integral_value,
index be25c5aca190f201268bf6acea6eb42e99334d43..621c6d216c7aac9aa986679f0ed59d6de20d3d25 100644 (file)
@@ -81,12 +81,12 @@ xmalloc (size)
       else
        allocated = (char *) sbrk (0) - (char *) &environ;
       fprintf (stderr,
-              "\n%s%sCan not allocate %lu bytes after allocating %lu bytes\n",
+              "\n%s%sCannot allocate %lu bytes after allocating %lu bytes\n",
               name, *name ? ": " : "",
               (unsigned long) size, (unsigned long) allocated);
 #else /* HAVE_SBRK */
       fprintf (stderr,
-              "\n%s%sCan not allocate %lu bytes\n",
+              "\n%s%sCannot allocate %lu bytes\n",
               name, *name ? ": " : "",
               (unsigned long) size);
 #endif /* HAVE_SBRK */
@@ -116,12 +116,12 @@ xcalloc (nelem, elsize)
       else
        allocated = (char *) sbrk (0) - (char *) &environ;
       fprintf (stderr,
-              "\n%s%sCan not allocate %lu bytes after allocating %lu bytes\n",
+              "\n%s%sCannot allocate %lu bytes after allocating %lu bytes\n",
               name, *name ? ": " : "",
               (unsigned long) (nelem * elsize), (unsigned long) allocated);
 #else /* HAVE_SBRK */
       fprintf (stderr,
-              "\n%s%sCan not allocate %lu bytes\n",
+              "\n%s%sCannot allocate %lu bytes\n",
               name, *name ? ": " : "",
               (unsigned long) (nelem * elsize));
 #endif /* HAVE_SBRK */
@@ -154,12 +154,12 @@ xrealloc (oldmem, size)
       else
        allocated = (char *) sbrk (0) - (char *) &environ;
       fprintf (stderr,
-              "\n%s%sCan not reallocate %lu bytes after allocating %lu bytes\n",
+              "\n%s%sCannot reallocate %lu bytes after allocating %lu bytes\n",
               name, *name ? ": " : "",
               (unsigned long) size, (unsigned long) allocated);
 #else /* HAVE_SBRK */
       fprintf (stderr,
-              "\n%s%sCan not reallocate %lu bytes\n",
+              "\n%s%sCannot reallocate %lu bytes\n",
               name, *name ? ": " : "",
               (unsigned long) size);
 #endif /* HAVE_SBRK */