Index: fusl/src/stat/chmod.c |
diff --git a/fusl/src/stat/chmod.c b/fusl/src/stat/chmod.c |
index d4f53c564e14701ea360a7159037c39838266d9f..3195efb5345f952f663deca86865ee818edad3f5 100644 |
--- a/fusl/src/stat/chmod.c |
+++ b/fusl/src/stat/chmod.c |
@@ -2,11 +2,10 @@ |
#include <fcntl.h> |
#include "syscall.h" |
-int chmod(const char *path, mode_t mode) |
-{ |
+int chmod(const char* path, mode_t mode) { |
#ifdef SYS_chmod |
- return syscall(SYS_chmod, path, mode); |
+ return syscall(SYS_chmod, path, mode); |
#else |
- return syscall(SYS_fchmodat, AT_FDCWD, path, mode); |
+ return syscall(SYS_fchmodat, AT_FDCWD, path, mode); |
#endif |
} |