diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-22 15:08:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-22 15:08:19 +0000 |
commit | 24b62f675248e627054d581c00cff1220d4c7588 (patch) | |
tree | dce65bc203c9009f8f0c44b715c8d05a3d35611a /lib | |
parent | 199c5062342265bcfd9b3845d69c0f65df930806 (diff) | |
download | coreutils-24b62f675248e627054d581c00cff1220d4c7588.tar.xz |
(x2nrealloc_inline): Fix typos in comments: s/size/size_t/.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/xmalloc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c index 20d85d83a..181006b43 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -136,8 +136,8 @@ xrealloc (void *p, size_t n) 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 @@ xrealloc (void *p, size_t n) 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) |