diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-10-27 15:03:27 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-10-27 15:03:27 (GMT) |
| commit | da07fbe0220630931595f469782262f84303e064 (patch) | |
| tree | c10a662243d025ab2244121490014145d35d462b /unix/tclUnixTest.c | |
| parent | c0a807097346d519940330d1ed1ae11c4fe9af22 (diff) | |
| download | tcl-da07fbe0220630931595f469782262f84303e064.zip tcl-da07fbe0220630931595f469782262f84303e064.tar.gz tcl-da07fbe0220630931595f469782262f84303e064.tar.bz2 | |
More C++-sentinel-related fixes (hopefully, those are the last ones)
Diffstat (limited to 'unix/tclUnixTest.c')
| -rw-r--r-- | unix/tclUnixTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index bade827..4f052a8 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -357,7 +357,7 @@ TestfilewaitCmd( Tcl_WrongNumArgs(interp, 2, objv, "file readable|writable|both timeout"); return TCL_ERROR; } - channel = Tcl_GetChannel(interp, Tcl_GetString(objv[1]), (void *)NULL); + channel = Tcl_GetChannel(interp, Tcl_GetString(objv[1]), NULL); if (channel == NULL) { return TCL_ERROR; } |
