From 065483ce8b22e7da470427493d68f36e6a53b80b Mon Sep 17 00:00:00 2001 From: dgp Date: Mon, 9 Mar 2020 16:24:52 +0000 Subject: Mac fix --- unix/tclUnixFCmd.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index 473949a..bd93ad2 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -1279,7 +1279,11 @@ TraversalDelete( static int CopyFileAtts( - TCL_UNUSED(const char *) /*src*/, /* Path name of source file (native). */ +#ifdef MAC_OSX_TCL + const char *src, /* Path name of source file (native). */ +#else + TCL_UNUSED(const char *) /*src*/, +#endif const char *dst, /* Path name of target file (native). */ const Tcl_StatBuf *statBufPtr) /* Stat info for source file */ -- cgit v0.12