Index: fusl/src/stat/mkfifo.c |
diff --git a/fusl/src/stat/mkfifo.c b/fusl/src/stat/mkfifo.c |
index 60efcf73f221d8deb238d0cb27e7c91b58bdcdf3..ce5aff838c0c299f7fc4c2bfed3e9db3838ed8bd 100644 |
--- a/fusl/src/stat/mkfifo.c |
+++ b/fusl/src/stat/mkfifo.c |
@@ -1,6 +1,5 @@ |
#include <sys/stat.h> |
-int mkfifo(const char *path, mode_t mode) |
-{ |
- return mknod(path, mode | S_IFIFO, 0); |
+int mkfifo(const char* path, mode_t mode) { |
+ return mknod(path, mode | S_IFIFO, 0); |
} |