diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-09 15:28:40 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-09 15:28:40 (GMT) |
commit | a2b56f4c74eeed4f6c3e8f3a25317fa4cf2b5ed6 (patch) | |
tree | 66fa3bb9dcba4343202b80fc951f4b1938609088 /unix/tclUnixFCmd.c | |
parent | 0255b9c3434aae81c12c55f0d34240e8ade8fe19 (diff) | |
download | tcl-a2b56f4c74eeed4f6c3e8f3a25317fa4cf2b5ed6.zip tcl-a2b56f4c74eeed4f6c3e8f3a25317fa4cf2b5ed6.tar.gz tcl-a2b56f4c74eeed4f6c3e8f3a25317fa4cf2b5ed6.tar.bz2 |
TclWinConvertError -> Tcl_WinConvertError
Diffstat (limited to 'unix/tclUnixFCmd.c')
-rw-r--r-- | unix/tclUnixFCmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index 4d08c1d..9e9a493 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -2350,7 +2350,7 @@ StatError( Tcl_Obj *fileName) /* The name of the file which caused the * error. */ { - TclWinConvertError(GetLastError()); + Tcl_WinConvertError(GetLastError()); Tcl_SetObjResult(interp, Tcl_ObjPrintf("could not read \"%s\": %s", TclGetString(fileName), Tcl_PosixError(interp))); } |