summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authornijtmans <nijtmans>2008-12-17 22:07:42 (GMT)
committernijtmans <nijtmans>2008-12-17 22:07:42 (GMT)
commit02170950464b11d466a6355a3b6f1c84dc186339 (patch)
treed08c6979f8788b47723b4264735586735cb3ac23 /generic
parent7ec024b438448f495e48efd5b7a832dba44110c7 (diff)
downloadtcl-02170950464b11d466a6355a3b6f1c84dc186339.zip
tcl-02170950464b11d466a6355a3b6f1c84dc186339.tar.gz
tcl-02170950464b11d466a6355a3b6f1c84dc186339.tar.bz2
don't use ckfree((void *)...) but
ckfree((char *)...)
Diffstat (limited to 'generic')
-rw-r--r--generic/tclBasic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index cfc88cc..d58368d 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -16,7 +16,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.377 2008/12/12 16:18:09 dkf Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.378 2008/12/17 22:07:42 nijtmans Exp $
*/
#include "tclInt.h"
@@ -3492,8 +3492,8 @@ OldMathFuncDeleteProc(
{
OldMathFuncData *dataPtr = clientData;
- ckfree((void *) dataPtr->argTypes);
- ckfree((void *) dataPtr);
+ ckfree((char *) dataPtr->argTypes);
+ ckfree((char *) dataPtr);
}
/*