diff options
author | nijtmans <nijtmans> | 2010-08-31 20:48:16 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-08-31 20:48:16 (GMT) |
commit | c7a29d8a5192bc554c5019ba53d8041aa12eb963 (patch) | |
tree | c5dcdf908c44f77ddfcc3bd0b202a6614a1b9d7a /generic/tclTomMathInterface.c | |
parent | f97a6571a6db13315c2b0767b1d178cd3330c4c3 (diff) | |
download | tcl-c7a29d8a5192bc554c5019ba53d8041aa12eb963.zip tcl-c7a29d8a5192bc554c5019ba53d8041aa12eb963.tar.gz tcl-c7a29d8a5192bc554c5019ba53d8041aa12eb963.tar.bz2 |
[Patch 2997642] many type casts needed when using Tcl_Pkg* API. Remaining part.
Typo in rules.vc
Diffstat (limited to 'generic/tclTomMathInterface.c')
-rw-r--r-- | generic/tclTomMathInterface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTomMathInterface.c b/generic/tclTomMathInterface.c index eb93fe6..694b607 100644 --- a/generic/tclTomMathInterface.c +++ b/generic/tclTomMathInterface.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTomMathInterface.c,v 1.15 2010/04/27 12:36:21 nijtmans Exp $ + * RCS: @(#) $Id: tclTomMathInterface.c,v 1.16 2010/08/31 20:48:17 nijtmans Exp $ */ #include "tclInt.h" @@ -44,7 +44,7 @@ TclTommath_Init( /* TIP #268: Full patchlevel instead of just major.minor */ if (Tcl_PkgProvideEx(interp, "tcl::tommath", TCL_PATCH_LEVEL, - (ClientData) &tclTomMathStubs) != TCL_OK) { + &tclTomMathStubs) != TCL_OK) { return TCL_ERROR; } return TCL_OK; |