summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2011-03-13 22:42:24 (GMT)
committerKevin B Kenny <kennykb@acm.org>2011-03-13 22:42:24 (GMT)
commit275e25852a803c9f7647f55925272c6e37a49bc9 (patch)
tree4f7d103c464bde929ac0961bcb9ee72be86a0261 /generic/tclTest.c
parentf742f18cebdc4ee036886e799e63d80cf82dcff7 (diff)
downloadtcl-275e25852a803c9f7647f55925272c6e37a49bc9.zip
tcl-275e25852a803c9f7647f55925272c6e37a49bc9.tar.gz
tcl-275e25852a803c9f7647f55925272c6e37a49bc9.tar.bz2
* generic/tclAssembly.c (BBEmitInstInt1): Changed parameter
data types in an effort to silence a MSVC warning reported by Ashok P. Nadkarni. Unable to test, since both forms work on my machine in VC2005, 2008. 2010, in both release and debug builds. * tests/tclTest.c (TestdstringCmd): Restored MSVC buildability broken by [5574bdd262], which changed the effective return type of 'ckalloc' from 'char*' to 'void*'.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 2e9a9e8..b757185 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -1767,7 +1767,7 @@ TestdstringCmd(
strcpy(s, "This is a malloc-ed string");
Tcl_SetResult(interp, s, TCL_DYNAMIC);
} else if (strcmp(argv[2], "special") == 0) {
- char *s = ckalloc(100) + 16;
+ char *s = (char*)ckalloc(100) + 16;
strcpy(s, "This is a specially-allocated string");
Tcl_SetResult(interp, s, SpecialFree);
} else {