summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2011-05-25 13:42:22 (GMT)
committerdgp <dgp@noemail.net>2011-05-25 13:42:22 (GMT)
commit7cb2c9f6bb897881ecb07c338e2b0084c8465c60 (patch)
tree12cc0de18e23205a09a5fe0df2277b663bcbe23c /generic/tclCompile.c
parent5878fb127152e5eff922033b2bd2fb38f00c22d8 (diff)
downloadtcl-7cb2c9f6bb897881ecb07c338e2b0084c8465c60.zip
tcl-7cb2c9f6bb897881ecb07c338e2b0084c8465c60.tar.gz
tcl-7cb2c9f6bb897881ecb07c338e2b0084c8465c60.tar.bz2
silence compiler warning
FossilOrigin-Name: 256e20e731a57dab3fb74a36b5226a6efc6e4462
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 8a7cbf8..7f11e0e 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -3081,7 +3081,7 @@ TclFixupForwardJump(
Tcl_SetHashValue(hPtr, INT2PTR(map[k].cmd));
}
- ckfree (map);
+ ckfree ((char *) map);
}
return 1; /* the jump was grown */