]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/wrappers/renamex.c
xnu-7195.81.3.tar.gz
[apple/xnu.git] / libsyscall / wrappers / renamex.c
index 8bdfdcd0de3caf52f397d8ed3694eb6c51966822..89898b1900128063f48c5617d02527ca03c89766 100644 (file)
@@ -30,7 +30,9 @@ int
 renameatx_np(int oldfd, const char *old, int newfd, const char *new, unsigned int flags)
 {
        int res = __renameatx_np(oldfd, old, newfd, new, flags);
-       if (res == 0) __inc_remove_counter();
+       if (res == 0) {
+               __inc_remove_counter();
+       }
        return res;
 }