changeset 9318:18c67ec54b59

Fix typo in comment.
author Ben Pfaff <blp@cs.stanford.edu>
date Mon, 08 Oct 2007 18:56:32 -0700
parents f7ffc7248a3f
children d6c555bc447f
files ChangeLog lib/xmalloca.h
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-10-08  Ben Pfaff  <blp@gnu.org>
+
+	* lib/xmalloca.h: Fix typo in comment.
+
 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
 
 	* lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
--- a/lib/xmalloca.h
+++ b/lib/xmalloca.h
@@ -27,7 +27,7 @@
 
 
 /* xmalloca(N) is a checking safe variant of alloca(N).  It allocates N bytes
-   of memory allocated on the stack, that must be freed using freesa() before
+   of memory allocated on the stack, that must be freed using freea() before
    the function returns.  Upon failure, it exits with an error message.  */
 #if HAVE_ALLOCA
 # define xmalloca(N) \