From: Denys Vlasenko Date: Tue, 6 Feb 2018 17:01:39 +0000 (+0100) Subject: fix compile failure in previous commit X-Git-Tag: 1_29_0~261 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1267770a9db90b2a29553e682e3b63aa86b0b34d;p=oweals%2Fbusybox.git fix compile failure in previous commit Signed-off-by: Denys Vlasenko --- diff --git a/libbb/make_directory.c b/libbb/make_directory.c index 64736efbe..9b03bb8d0 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c @@ -121,7 +121,7 @@ int FAST_FUNC bb_make_directory(char *path, long mode, int flags) * an error. */ if (mode != -1) { //bb_error_msg("chmod 0%03lo mkdir '%s'", mode, path); - if (chmod(path, mode) < 0)) { + if (chmod(path, mode) < 0) { fail_msg = "set permissions of"; if (flags & FILEUTILS_IGNORE_CHMOD_ERR) { flags = 0;