diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-11-20 20:07:43 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-11-20 20:07:43 (GMT) |
| commit | e043c623f79de150a3f1230d95d4d66d6d9da62c (patch) | |
| tree | 4412d9a45167b471a9b3efb92230e9d46d6321f8 /generic/tclInt.decls | |
| parent | eec237466690316958a6a7686e5ba5030992a358 (diff) | |
| download | tcl-e043c623f79de150a3f1230d95d4d66d6d9da62c.zip tcl-e043c623f79de150a3f1230d95d4d66d6d9da62c.tar.gz tcl-e043c623f79de150a3f1230d95d4d66d6d9da62c.tar.bz2 | |
Fix TclpGetPid() signature (should use Tcl_Size, not size_t)
Diffstat (limited to 'generic/tclInt.decls')
| -rw-r--r-- | generic/tclInt.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 36c6159..7c8ea15 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -759,7 +759,7 @@ declare 7 { TclFile TclpOpenFile(const char *fname, int mode) } declare 8 { - size_t TclpGetPid(Tcl_Pid pid) + Tcl_Size TclpGetPid(Tcl_Pid pid) } declare 9 { TclFile TclpCreateTempFile(const char *contents) @@ -780,7 +780,7 @@ declare 17 { const Tcl_StatBuf *statBufPtr, int dontCopyAtts) } declare 20 { - void TclWinAddProcess(void *hProcess, size_t id) + void TclWinAddProcess(void *hProcess, Tcl_Size id) } declare 24 { char *TclWinNoBackslash(char *path) |
