Index: fusl/src/unistd/chown.c |
diff --git a/fusl/src/unistd/chown.c b/fusl/src/unistd/chown.c |
index 14b032550d675e6594302a6107c13a599d57443a..f8f29106183ba018f7cc4022d4adee363858eb15 100644 |
--- a/fusl/src/unistd/chown.c |
+++ b/fusl/src/unistd/chown.c |
@@ -2,11 +2,10 @@ |
#include <fcntl.h> |
#include "syscall.h" |
-int chown(const char *path, uid_t uid, gid_t gid) |
-{ |
+int chown(const char* path, uid_t uid, gid_t gid) { |
#ifdef SYS_chown |
- return syscall(SYS_chown, path, uid, gid); |
+ return syscall(SYS_chown, path, uid, gid); |
#else |
- return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, 0); |
+ return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, 0); |
#endif |
} |