diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-19 19:47:18 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-19 19:47:18 (GMT) |
| commit | 6643ceb1413079a9b7175b6c9fae4d81e0a0d40a (patch) | |
| tree | b0d007a15bcdaa49267badb767ee9460798d0f58 /unix/tclUnixPipe.c | |
| parent | ed8816500efafbfe088d86c9fe5fe97862ac77c0 (diff) | |
| download | tcl-6643ceb1413079a9b7175b6c9fae4d81e0a0d40a.zip tcl-6643ceb1413079a9b7175b6c9fae4d81e0a0d40a.tar.gz tcl-6643ceb1413079a9b7175b6c9fae4d81e0a0d40a.tar.bz2 | |
int -> Tcl_Size and other (internal) signature improvements. Most of them backported from 9.0
Diffstat (limited to 'unix/tclUnixPipe.c')
| -rw-r--r-- | unix/tclUnixPipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c index b6ade1a..a7ad056 100644 --- a/unix/tclUnixPipe.c +++ b/unix/tclUnixPipe.c @@ -548,7 +548,7 @@ TclpCreateProcess( * here, since this is the error case. [Bug: 6148] */ - Tcl_WaitPid((Tcl_Pid) INT2PTR(pid), &status, 0); + Tcl_WaitPid((Tcl_Pid)INT2PTR(pid), &status, 0); } if (errPipeIn) { |
