diff options
| author | dgp <dgp@users.sourceforge.net> | 2020-03-09 16:24:52 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2020-03-09 16:24:52 (GMT) |
| commit | 065483ce8b22e7da470427493d68f36e6a53b80b (patch) | |
| tree | c28cb871c3aadbb6dd2e94268396646682aa5885 /unix | |
| parent | 683144e7f0a62bea19fb406f3f3cb377a9eb7d58 (diff) | |
| download | tcl-065483ce8b22e7da470427493d68f36e6a53b80b.zip tcl-065483ce8b22e7da470427493d68f36e6a53b80b.tar.gz tcl-065483ce8b22e7da470427493d68f36e6a53b80b.tar.bz2 | |
Mac fix
Diffstat (limited to 'unix')
| -rw-r--r-- | unix/tclUnixFCmd.c | 6 |
1 files changed, 5 insertions, 1 deletions
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 */ |
