diff options
author | das <das> | 2009-10-05 02:39:40 (GMT) |
---|---|---|
committer | das <das> | 2009-10-05 02:39:40 (GMT) |
commit | 26547a1397053787d658743264d1d47d19d3c076 (patch) | |
tree | 78adc064be0dc27c4dec746d39dbb74e89cdff06 /generic | |
parent | 7ad9ba94f77eba7345aaf7872f5f40681d7e16a4 (diff) | |
download | tcl-26547a1397053787d658743264d1d47d19d3c076.zip tcl-26547a1397053787d658743264d1d47d19d3c076.tar.gz tcl-26547a1397053787d658743264d1d47d19d3c076.tar.bz2 |
fix typos
Diffstat (limited to 'generic')
-rwxr-xr-x | generic/tclThreadAlloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index f4c1e63..426c619 100755 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadAlloc.c,v 1.4.2.9 2009/09/28 21:20:51 dgp Exp $ + * RCS: @(#) $Id: tclThreadAlloc.c,v 1.4.2.10 2009/10/05 02:39:40 das Exp $ */ #include "tclInt.h" @@ -316,7 +316,7 @@ TclpAlloc(unsigned int reqsize) const size_t zero = 0; const size_t max = ~zero; - if (((size_t) reqSize) > max - sizeof(Block) - RCHECK) { + if (((size_t) reqsize) > max - sizeof(Block) - RCHECK) { /* Requested allocation exceeds memory */ return NULL; } @@ -456,7 +456,7 @@ TclpRealloc(char *ptr, unsigned int reqsize) const size_t zero = 0; const size_t max = ~zero; - if (((size_t) reqSize) > max - sizeof(Block) - RCHECK) { + if (((size_t) reqsize) > max - sizeof(Block) - RCHECK) { /* Requested allocation exceeds memory */ return NULL; } |