summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatthoyts@users.sourceforge.net <patthoyts>2009-11-21 21:58:30 (GMT)
committerpatthoyts@users.sourceforge.net <patthoyts>2009-11-21 21:58:30 (GMT)
commitc2a0afcbf1cb4bd860034775cc1ea91ff016d313 (patch)
treec7c2f708da746a4737997e70c104ed4e4afdb0c2
parent9b3739623c2953062e1793a5c046d5f1c19240aa (diff)
downloadtcl-c2a0afcbf1cb4bd860034775cc1ea91ff016d313.zip
tcl-c2a0afcbf1cb4bd860034775cc1ea91ff016d313.tar.gz
tcl-c2a0afcbf1cb4bd860034775cc1ea91ff016d313.tar.bz2
Cast required when setting result using a const string. String is copied by TCL_VOLATILE.
-rw-r--r--generic/tclIORChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c
index f2f8e1d..e3ba688 100644
--- a/generic/tclIORChan.c
+++ b/generic/tclIORChan.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: tclIORChan.c,v 1.42 2009/11/18 22:41:41 nijtmans Exp $
+ * RCS: @(#) $Id: tclIORChan.c,v 1.43 2009/11/21 21:58:30 patthoyts Exp $
*/
#include <tclInt.h>
@@ -735,7 +735,7 @@ TclChanCreateObjCmd(
* Return handle as result of command.
*/
- Tcl_SetResult(interp, chanPtr->state->channelName, TCL_VOLATILE);
+ Tcl_SetResult(interp, (char *)chanPtr->state->channelName, TCL_VOLATILE);
return TCL_OK;
error: