From aa0e6b9977eff5c5433239a916623a4a3e8a67cb Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 17 Mar 2008 07:34:22 -0700 Subject: Attempting to silence some more "checker" warnings. --- syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'syscall.c') diff --git a/syscall.c b/syscall.c index c2180de3..d4ff3f91 100644 --- a/syscall.c +++ b/syscall.c @@ -167,7 +167,7 @@ int do_chmod(const char *path, mode_t mode) code = 1; #endif } else - code = chmod(path, mode & CHMOD_BITS); + code = chmod(path, mode & CHMOD_BITS); /* DISCOURAGED FUNCTION */ if (code != 0 && (preserve_perms || preserve_executability)) return code; return 0; -- cgit v1.2.3