]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/wrappers/renameat.c
xnu-7195.81.3.tar.gz
[apple/xnu.git] / libsyscall / wrappers / renameat.c
index 727760f6787e591ee7a7e394f89953fe7d846169..512d3418621bd423503266620b6bf8a9ecc3c375 100644 (file)
@@ -28,6 +28,8 @@ int
 renameat(int oldfd, const char *old, int newfd, const char *new)
 {
        int res = __renameat(oldfd, old, newfd, new);
-       if (res == 0) __inc_remove_counter();
+       if (res == 0) {
+               __inc_remove_counter();
+       }
        return res;
 }