summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadAlloc.c
diff options
context:
space:
mode:
authordas <das>2009-10-05 02:39:40 (GMT)
committerdas <das>2009-10-05 02:39:40 (GMT)
commit26547a1397053787d658743264d1d47d19d3c076 (patch)
tree78adc064be0dc27c4dec746d39dbb74e89cdff06 /generic/tclThreadAlloc.c
parent7ad9ba94f77eba7345aaf7872f5f40681d7e16a4 (diff)
downloadtcl-26547a1397053787d658743264d1d47d19d3c076.zip
tcl-26547a1397053787d658743264d1d47d19d3c076.tar.gz
tcl-26547a1397053787d658743264d1d47d19d3c076.tar.bz2
fix typos
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-xgeneric/tclThreadAlloc.c6
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;
}