diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-26 15:53:40 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-26 15:53:40 (GMT) |
| commit | cd51753d86cde24e24f0fa1c6edf6821ba25d0aa (patch) | |
| tree | d4ba6b39c3f40354edd6a8bf89eb6c5573528925 /generic/tclZlib.c | |
| parent | f227a5d1ff1c36d3bc5eca3f7378d5064d59d4eb (diff) | |
| download | tcl-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 'generic/tclZlib.c')
| -rw-r--r-- | generic/tclZlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c index 1399ec9..e083243 100644 --- a/generic/tclZlib.c +++ b/generic/tclZlib.c @@ -3761,7 +3761,7 @@ ZlibStackChannelTransform( if (compDictObj != NULL) { cd->compDictObj = Tcl_DuplicateObj(compDictObj); Tcl_IncrRefCount(cd->compDictObj); - Tcl_GetByteArrayFromObj(cd->compDictObj, (size_t *)NULL); + Tcl_GetByteArrayFromObj(cd->compDictObj, (Tcl_Size *)NULL); } if (format == TCL_ZLIB_FORMAT_RAW) { |
