summaryrefslogtreecommitdiffstats
path: root/generic/tclZlib.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-01-07 17:17:09 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-01-07 17:17:09 (GMT)
commitc220ae0d43a2ad241eeedde1f7b0c14ed90d36b2 (patch)
treea12defbd996d6a9b313c9f58ddd2656ec12f52c5 /generic/tclZlib.c
parente3c67e088158312bf1d91f23ff22d9f67f87c016 (diff)
downloadtcl-c220ae0d43a2ad241eeedde1f7b0c14ed90d36b2.zip
tcl-c220ae0d43a2ad241eeedde1f7b0c14ed90d36b2.tar.gz
tcl-c220ae0d43a2ad241eeedde1f7b0c14ed90d36b2.tar.bz2
Fix [0386e9a967]: Bitrot in tclZlib.c
Diffstat (limited to 'generic/tclZlib.c')
-rw-r--r--generic/tclZlib.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c
index c9bc77f..daf2a91 100644
--- a/generic/tclZlib.c
+++ b/generic/tclZlib.c
@@ -4072,18 +4072,18 @@ Tcl_ZlibInflate(
unsigned int
Tcl_ZlibCRC32(
- unsigned int crc,
- const char *buf,
- int len)
+ TCL_UNUSED(unsigned int),
+ TCL_UNUSED(const unsigned char *),
+ TCL_UNUSED(int))
{
return 0;
}
unsigned int
Tcl_ZlibAdler32(
- unsigned int adler,
- const char *buf,
- int len)
+ TCL_UNUSED(unsigned int),
+ TCL_UNUSED(const unsigned char *),
+ TCL_UNUSED(int))
{
return 0;
}