From b29d74ec2654984b9127f0bb826996d4c2938670 Mon Sep 17 00:00:00 2001 From: Luis Felipe Strano Moraes Date: Mon, 6 Feb 2012 14:36:56 -0800 Subject: Silence really boring compiler warning. --- toys/cp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/cp.c') diff --git a/toys/cp.c b/toys/cp.c index 3aaa00fb..fadab319 100644 --- a/toys/cp.c +++ b/toys/cp.c @@ -109,10 +109,10 @@ void cp_file(char *src, char *dst, struct stat *srcst) // Can't do fchmod() etc here because -p works on mkdir, too. if (toys.optflags & FLAG_p) { - int mask = umask(0), ignored; + int mask = umask(0); struct utimbuf ut; - ignored = fchown(fdout,srcst->st_uid, srcst->st_gid); + (void) fchown(fdout,srcst->st_uid, srcst->st_gid); ut.actime = srcst->st_atime; ut.modtime = srcst->st_mtime; utime(dst, &ut); -- cgit v1.2.3