Index: fusl/src/linux/chroot.c |
diff --git a/fusl/src/linux/chroot.c b/fusl/src/linux/chroot.c |
index 0e69f145dee37cbdc865f6cf6e222a1658d58cdc..1154043fe4d044bdda17db211bcd21bf7f4352a6 100644 |
--- a/fusl/src/linux/chroot.c |
+++ b/fusl/src/linux/chroot.c |
@@ -2,7 +2,6 @@ |
#include <unistd.h> |
#include "syscall.h" |
-int chroot(const char *path) |
-{ |
- return syscall(SYS_chroot, path); |
+int chroot(const char* path) { |
+ return syscall(SYS_chroot, path); |
} |