diff options
author | dgp <dgp@users.sourceforge.net> | 2004-10-28 04:16:19 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-10-28 04:16:19 (GMT) |
commit | 1bdeaea06e156311beb3940ea3b4d31d737da50a (patch) | |
tree | 175661944edebb6051c4afbcbcc43594a8c1a5c6 /generic/tclCmdAH.c | |
parent | eb3bdd1436d6f44483a5067f3d7021ca26e2cce6 (diff) | |
download | tcl-1bdeaea06e156311beb3940ea3b4d31d737da50a.zip tcl-1bdeaea06e156311beb3940ea3b4d31d737da50a.tar.gz tcl-1bdeaea06e156311beb3940ea3b4d31d737da50a.tar.bz2 |
* tests/socket.test (socket-13.1): Balanced [makeFile] and
[removeFile] commands.
* generic/tclCmdAH.c (Tcl_FormatObjCmd): Restored missing
line from yesterdays' 868486 backport that caused failed alloc's
on LP64 systems.
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r-- | generic/tclCmdAH.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index 4c43b87..c015b1b 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.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: tclCmdAH.c,v 1.27.2.9 2004/10/27 15:39:35 kennykb Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.27.2.10 2004/10/28 04:16:20 dgp Exp $ */ #include "tclInt.h" @@ -2220,6 +2220,7 @@ Tcl_FormatObjCmd(dummy, interp, objc, objv) newPtr[-2] = 'l'; #endif /* LONG_MAX > INT_MAX */ whichValue = INT_VALUE; + size = 40 + precision; break; case 's': /* |