summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-11-22 09:24:17 +0100
committerJim Meyering <meyering@redhat.com>2007-11-22 09:24:17 +0100
commit849c3830dc9b89a698a279a75c2bfa1e4f985fe4 (patch)
tree42cb98cfe3dcc6cb4051c5eb677377e74cba1d92 /src
parent7794100ef88f8fbf40309604c7f22a58dbd2a37d (diff)
downloadcoreutils-849c3830dc9b89a698a279a75c2bfa1e4f985fe4.tar.xz
Quiet warnings about unused parameters.
* src/copy.c (set_author) [!HAVE_STRUCT_STAT_ST_AUTHOR]: "Use" each of the parameters.
Diffstat (limited to 'src')
-rw-r--r--src/copy.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/copy.c b/src/copy.c
index 31e29b1bf..280fbf8d9 100644
--- a/src/copy.c
+++ b/src/copy.c
@@ -227,6 +227,10 @@ set_author (const char *dst_name, int dest_desc, const struct stat *src_sb)
quote (dst_name));
mach_port_deallocate (mach_task_self (), file);
}
+#else
+ (void) dst_name;
+ (void) dest_desc;
+ (void) src_sb;
#endif
}