diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-08-05 20:34:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-08-05 20:34:57 (GMT) |
commit | 6aad9eb5238309785f06a794e5a58496bab884ee (patch) | |
tree | 03a897dfb2afc75d26f2aa276abc3238ee535952 /win/tclWinChan.c | |
parent | 13147008eb79f31b7f144a848233b4a28591b2d9 (diff) | |
download | tcl-6aad9eb5238309785f06a794e5a58496bab884ee.zip tcl-6aad9eb5238309785f06a794e5a58496bab884ee.tar.gz tcl-6aad9eb5238309785f06a794e5a58496bab884ee.tar.bz2 |
Fixes to my previous commit, from Francois Vogel. (My thanks and apologies!)
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r-- | win/tclWinChan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c index bc233ea..52b9e32 100644 --- a/win/tclWinChan.c +++ b/win/tclWinChan.c @@ -942,7 +942,7 @@ TclpOpenFileChannel( if (interp != (Tcl_Interp *) NULL) { Tcl_SetObjResult(interp, Tcl_ObjPrintf( "couldn't open \"%s\": %s", - TclGetString(pathPtr),, Tcl_PosixError(interp))); + TclGetString(pathPtr), Tcl_PosixError(interp))); } return NULL; } |