summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadTest.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-01-12 11:12:52 (GMT)
committerhobbs <hobbs>2000-01-12 11:12:52 (GMT)
commit406d6b83a7c5904f8364bca9dafa894901281bc2 (patch)
tree29e99ab6319a4b908ee0fe4c9945a73e768ecbeb /generic/tclThreadTest.c
parent27b97b815ad52aaf241bcbe0fad4cd1967fadae8 (diff)
downloadtcl-406d6b83a7c5904f8364bca9dafa894901281bc2.zip
tcl-406d6b83a7c5904f8364bca9dafa894901281bc2.tar.gz
tcl-406d6b83a7c5904f8364bca9dafa894901281bc2.tar.bz2
* generic/tclClock.c: fixed support for 64bit handling of clock
values [Bug: 1806] * generic/tclThreadTest.c: upped a buffer size to hold double * tests/info.test: * generic/tclCmdIL.c: fixed 'info procs ::namesp::*' behavior (Dejong) * generic/tclNamesp.c: made imported commands also import their compile proc [Bug: 2100]
Diffstat (limited to 'generic/tclThreadTest.c')
-rw-r--r--generic/tclThreadTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c
index 60ea7a9..9aa43d5 100644
--- a/generic/tclThreadTest.c
+++ b/generic/tclThreadTest.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: tclThreadTest.c,v 1.5 1999/12/21 23:58:04 hobbs Exp $
+ * RCS: @(#) $Id: tclThreadTest.c,v 1.6 2000/01/12 11:12:53 hobbs Exp $
*/
#include "tclInt.h"
@@ -493,7 +493,7 @@ ThreadErrorProc(interp)
Tcl_Channel errChannel;
char *errorInfo, *script;
char *argv[3];
- char buf[10];
+ char buf[TCL_DOUBLE_SPACE+1];
sprintf(buf, "%ld", (long) Tcl_GetCurrentThread());
errorInfo = Tcl_GetVar(interp, "errorInfo", TCL_GLOBAL_ONLY);