summaryrefslogtreecommitdiffstats
path: root/win/tclWinTest.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-10-19 18:48:35 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-10-19 18:48:35 (GMT)
commit6eac416e1dac9fc63b8ad41757cc3b4cf1965b82 (patch)
tree364627b4ae36382dee748096f92f74b1977d4ae8 /win/tclWinTest.c
parent12f22db7d88ada7a15f6c0371b6dc49ef02d698d (diff)
parent9d3abb8846c9436ab40ac8ed9ecbaa9195f6e1f2 (diff)
downloadtcl-6eac416e1dac9fc63b8ad41757cc3b4cf1965b82.zip
tcl-6eac416e1dac9fc63b8ad41757cc3b4cf1965b82.tar.gz
tcl-6eac416e1dac9fc63b8ad41757cc3b4cf1965b82.tar.bz2
Merge 8.7
Diffstat (limited to 'win/tclWinTest.c')
-rw-r--r--win/tclWinTest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tclWinTest.c b/win/tclWinTest.c
index 29bdfe4..9a4c082 100644
--- a/win/tclWinTest.c
+++ b/win/tclWinTest.c
@@ -150,7 +150,7 @@ TesteventloopCmd(
framePtr = oldFramePtr;
} else {
Tcl_AppendResult(interp, "bad option \"", Tcl_GetString(objv[1]),
- "\": must be done or wait", NULL);
+ "\": must be done or wait", (void *)NULL);
return TCL_ERROR;
}
return TCL_OK;
@@ -204,11 +204,11 @@ TestvolumetypeCmd(
if (found == 0) {
Tcl_AppendResult(interp, "could not get volume type for \"",
- (path?path:""), "\"", NULL);
+ (path?path:""), "\"", (void *)NULL);
Tcl_WinConvertError(GetLastError());
return TCL_ERROR;
}
- Tcl_AppendResult(interp, volType, NULL);
+ Tcl_AppendResult(interp, volType, (void *)NULL);
return TCL_OK;
#undef VOL_BUF_SIZE
}
@@ -663,7 +663,7 @@ TestchmodCmd(
}
if (TestplatformChmod(translated, mode) != 0) {
Tcl_AppendResult(interp, translated, ": ", Tcl_PosixError(interp),
- NULL);
+ (void *)NULL);
return TCL_ERROR;
}
Tcl_DStringFree(&buffer);