changeset 4881:aa124f49fb13

(x2nrealloc_inline): Fix typos in comments: s/size/size_t/.
author Jim Meyering <jim@meyering.net>
date Sat, 22 Nov 2003 15:07:36 +0000
parents d838b442a64a
children 5ee11720d346
files lib/xmalloc.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -136,8 +136,8 @@
    Here is an example of use:
 
      int *p = NULL;
-     size used = 0;
-     size allocated = 0;
+     size_t used = 0;
+     size_t allocated = 0;
 
      void
      append_int (int value)
@@ -155,9 +155,9 @@
    example:
 
      int *p = NULL;
-     size used = 0;
-     size allocated = 0;
-     size allocated1 = 1000;
+     size_t used = 0;
+     size_t allocated = 0;
+     size_t allocated1 = 1000;
 
      void
      append_int (int value)