summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2018-09-21 09:29:24 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2018-09-21 09:29:24 (GMT)
commitd025ae5c08c20fe811f1917da0408e1f23768786 (patch)
tree66859d52f14255fb384c2699df0a8143a7b39b77 /generic/tclTest.c
parentfbef9aa84089336e767f0dafe410df51b4f1d3b3 (diff)
parentbd42171094d5ada2e2e46978f2e842a66b6fa44e (diff)
downloadtcl-d025ae5c08c20fe811f1917da0408e1f23768786.zip
tcl-d025ae5c08c20fe811f1917da0408e1f23768786.tar.gz
tcl-d025ae5c08c20fe811f1917da0408e1f23768786.tar.bz2
merge core-8-branch
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 48b4761..18bfc1b 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -2832,7 +2832,7 @@ TestlinkCmd(
static int intVar = 43;
static int boolVar = 4;
static double realVar = 1.23;
- static Tcl_WideInt wideVar = Tcl_LongAsWide(79);
+ static Tcl_WideInt wideVar = 79;
static char *stringVar = NULL;
static char charVar = '@';
static unsigned char ucharVar = 130;
@@ -2842,7 +2842,7 @@ TestlinkCmd(
static long longVar = 123456789L;
static unsigned long ulongVar = 3456789012UL;
static float floatVar = 4.5;
- static Tcl_WideUInt uwideVar = (Tcl_WideUInt) Tcl_LongAsWide(123);
+ static Tcl_WideUInt uwideVar = 123;
static int created = 0;
char buffer[2*TCL_DOUBLE_SPACE];
int writable, flag;