diff options
author | das <das> | 2007-09-22 15:46:45 (GMT) |
---|---|---|
committer | das <das> | 2007-09-22 15:46:45 (GMT) |
commit | 0d734ceb2fa06b20c91f1f2451ba58c75b17a9cb (patch) | |
tree | 555efda10b9b89df5b80f20f24caff041d1e5d8c /generic/tclAlloc.c | |
parent | 1eea940783228a5707b3719b9c142db70d8a2fa3 (diff) | |
download | tcl-0d734ceb2fa06b20c91f1f2451ba58c75b17a9cb.zip tcl-0d734ceb2fa06b20c91f1f2451ba58c75b17a9cb.tar.gz tcl-0d734ceb2fa06b20c91f1f2451ba58c75b17a9cb.tar.bz2 |
s/amount/amt/ [Bug 1800153]
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r-- | generic/tclAlloc.c | 4 |
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) { |