summaryrefslogtreecommitdiffstats
path: root/win/tclWinPipe.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-04-26 15:53:40 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-04-26 15:53:40 (GMT)
commitcd51753d86cde24e24f0fa1c6edf6821ba25d0aa (patch)
treed4ba6b39c3f40354edd6a8bf89eb6c5573528925 /win/tclWinPipe.c
parentf227a5d1ff1c36d3bc5eca3f7378d5064d59d4eb (diff)
downloadtcl-cd51753d86cde24e24f0fa1c6edf6821ba25d0aa.zip
tcl-cd51753d86cde24e24f0fa1c6edf6821ba25d0aa.tar.gz
tcl-cd51753d86cde24e24f0fa1c6edf6821ba25d0aa.tar.bz2
More size_t -> Tcl_Size changes, which were missed before. Also (experimental) make the wrapper macro's produce compiler warnings is Tcl_Size is not used.
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r--win/tclWinPipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index da24306..d9cee73 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -3191,7 +3191,7 @@ TclpOpenTemporaryFile(
char *namePtr;
HANDLE handle;
DWORD flags = FILE_ATTRIBUTE_TEMPORARY;
- size_t length;
+ Tcl_Size length;
int counter, counter2;
Tcl_DString buf;