summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authordas <das>2007-09-22 15:46:45 (GMT)
committerdas <das>2007-09-22 15:46:45 (GMT)
commit9df135929dc4d61b19117038556c95a8bea8566e (patch)
tree555efda10b9b89df5b80f20f24caff041d1e5d8c /generic/tclAlloc.c
parent4fe5e5ccceb32a9e4874954cbe3ae52b89e01293 (diff)
downloadtcl-9df135929dc4d61b19117038556c95a8bea8566e.zip
tcl-9df135929dc4d61b19117038556c95a8bea8566e.tar.gz
tcl-9df135929dc4d61b19117038556c95a8bea8566e.tar.bz2
s/amount/amt/ [Bug 1800153]
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r--generic/tclAlloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclAlloc.c b/generic/tclAlloc.c
index f3dfb35..12c0201 100644
--- a/generic/tclAlloc.c
+++ b/generic/tclAlloc.c
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclAlloc.c,v 1.16.2.2 2007/06/29 03:17:33 das Exp $
+ * RCS: @(#) $Id: tclAlloc.c,v 1.16.2.3 2007/09/22 15:46:45 das Exp $
*/
/*
@@ -322,7 +322,7 @@ TclpAlloc(nbytes)
* Account for space used per block for accounting.
*/
- amount = MINBLOCK; /* size of first bucket */
+ amt = MINBLOCK; /* size of first bucket */
bucket = MINBLOCK >> 4;
while (nbytes + OVERHEAD > amt) {