summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authorandreask <andreask>2014-08-01 20:07:40 (GMT)
committerandreask <andreask>2014-08-01 20:07:40 (GMT)
commit6f329a1932ac170449caed077ca7f5596709433c (patch)
tree33a548b1c815761f267175bdff590a4993021143 /generic/tclExecute.c
parent2a7d494c84c347710e0d9784a7cd62031baf9b8f (diff)
downloadtcl-6f329a1932ac170449caed077ca7f5596709433c.zip
tcl-6f329a1932ac170449caed077ca7f5596709433c.tar.gz
tcl-6f329a1932ac170449caed077ca7f5596709433c.tar.bz2
Addition of a cast in tclWinFile.c to match types in a comparison, and
fix of a TRACE string literal in tclExecute.c with a bogus escape. Both would otherwise bug a Windows debug build (where warnings are errors).
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 2098e50..2e03ab4 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -5079,7 +5079,7 @@ TEBCresume(
valuePtr = OBJ_AT_TOS;
opnd = TclGetInt4AtPtr(pc+1);
- TRACE(("\%.30s\" %d => ", O2S(valuePtr), opnd));
+ TRACE(("\"%.30s\" %d => ", O2S(valuePtr), opnd));
/*
* Get the contents of the list, making sure that it really is a list