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 | aa7ab9ce5eba66a61032dc91795617354ca8c05f (patch) | |
tree | 03a897dfb2afc75d26f2aa276abc3238ee535952 /win/tclWinChan.c | |
parent | 0f97712d765005441870b6e919297456e986be02 (diff) | |
download | tcl-aa7ab9ce5eba66a61032dc91795617354ca8c05f.zip tcl-aa7ab9ce5eba66a61032dc91795617354ca8c05f.tar.gz tcl-aa7ab9ce5eba66a61032dc91795617354ca8c05f.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; } |