summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-06-28 22:43:10 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-06-28 22:43:10 (GMT)
commit121c6e30ab5da9a15f0dd83b51671e139869d0d9 (patch)
tree64b6b9cfd1d2ffba4aaa6a29aa9d71bc98926ce9 /compat
parent9f89b782ef2735f4a293569aa4e3e82c3db21544 (diff)
parent10643b02982edd5bfc36a6ab8d6f84795a00c3a3 (diff)
downloadtcl-121c6e30ab5da9a15f0dd83b51671e139869d0d9.zip
tcl-121c6e30ab5da9a15f0dd83b51671e139869d0d9.tar.gz
tcl-121c6e30ab5da9a15f0dd83b51671e139869d0d9.tar.bz2
Merge 8.7
Diffstat (limited to 'compat')
-rw-r--r--compat/zlib/contrib/minizip/minizip.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/compat/zlib/contrib/minizip/minizip.c b/compat/zlib/contrib/minizip/minizip.c
index 2dd9f10..8a31582 100644
--- a/compat/zlib/contrib/minizip/minizip.c
+++ b/compat/zlib/contrib/minizip/minizip.c
@@ -70,8 +70,8 @@
#ifdef _WIN32
uLong filetime(f, tmzip, dt)
- char *f; /* name of file to get info on */
- tm_zip *tmzip; /* return value: access, modific. and creation times */
+ const char *f; /* name of file to get info on */
+ tm_zip *tmzip; /* return value: access, modific. and creation times */
uLong *dt; /* dostime */
{
int ret = 0;
@@ -94,7 +94,7 @@ uLong filetime(f, tmzip, dt)
#else
#if defined(unix) || defined(__APPLE__)
uLong filetime(f, tmzip, dt)
- char *f; /* name of file to get info on */
+ const char *f; /* name of file to get info on */
tm_zip *tmzip; /* return value: access, modific. and creation times */
uLong *dt; /* dostime */
{
@@ -136,8 +136,8 @@ uLong filetime(f, tmzip, dt)
}
#else
uLong filetime(f, tmzip, dt)
- char *f; /* name of file to get info on */
- tm_zip *tmzip; /* return value: access, modific. and creation times */
+ const char *f; /* name of file to get info on */
+ tm_zip *tmzip; /* return value: access, modific. and creation times */
uLong *dt; /* dostime */
{
return 0;