diff options
| author | dgp@users.sourceforge.net <dgp> | 2002-01-26 01:10:08 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2002-01-26 01:10:08 (GMT) |
| commit | d217bb9391701a714b94a8c511a5b71554e5aaa6 (patch) | |
| tree | e98bf2d4819a5270b97f764736441c86b9eb51e3 /generic/tclCmdIL.c | |
| parent | e1f4440350e89527ac73db798c47bf5fcc88f848 (diff) | |
| download | tcl-d217bb9391701a714b94a8c511a5b71554e5aaa6.zip tcl-d217bb9391701a714b94a8c511a5b71554e5aaa6.tar.gz tcl-d217bb9391701a714b94a8c511a5b71554e5aaa6.tar.bz2 | |
* Sought out and eliminated instances of CONST-casting that are no
longer needed after the TIP 27 effort.
Diffstat (limited to 'generic/tclCmdIL.c')
| -rw-r--r-- | generic/tclCmdIL.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index 72f6760..4a922fe 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.39 2002/01/25 20:40:55 dgp Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.40 2002/01/26 01:10:08 dgp Exp $ */ #include "tclInt.h" @@ -1421,7 +1421,7 @@ InfoNameOfExecutableCmd(dummy, interp, objc, objv) nameOfExecutable = Tcl_GetNameOfExecutable(); if (nameOfExecutable != NULL) { - Tcl_SetStringObj(Tcl_GetObjResult(interp), (char *)nameOfExecutable, -1); + Tcl_SetStringObj(Tcl_GetObjResult(interp), nameOfExecutable, -1); } return TCL_OK; } |
