summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
Diffstat (limited to 'win')
-rw-r--r--win/tclWinChan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c
index 248e14b..76382d9 100644
--- a/win/tclWinChan.c
+++ b/win/tclWinChan.c
@@ -826,7 +826,7 @@ ComGetOptionProc(instanceData, interp, optionName, dsPtr)
/*
*----------------------------------------------------------------------
*
- * Tcl_OpenFileChannel --
+ * TclpOpenFileChannel --
*
* Open an File based channel on Unix systems.
*
@@ -842,7 +842,7 @@ ComGetOptionProc(instanceData, interp, optionName, dsPtr)
*/
Tcl_Channel
-Tcl_OpenFileChannel(interp, fileName, modeString, permissions)
+TclpOpenFileChannel(interp, fileName, modeString, permissions)
Tcl_Interp *interp; /* Interpreter for error reporting;
* can be NULL. */
char *fileName; /* Name of file to open. */
@@ -889,7 +889,7 @@ Tcl_OpenFileChannel(interp, fileName, modeString, permissions)
channelPermissions = (TCL_READABLE | TCL_WRITABLE);
break;
default:
- panic("Tcl_OpenFileChannel: invalid mode value");
+ panic("TclpOpenFileChannel: invalid mode value");
break;
}