Index: fusl/src/unistd/pwritev.c |
diff --git a/fusl/src/unistd/pwritev.c b/fusl/src/unistd/pwritev.c |
index aec5d3235a0f45d4bf5b12c803afb67033a9e9b0..14e8610903970c4adc1942de7b8e5884430d04ef 100644 |
--- a/fusl/src/unistd/pwritev.c |
+++ b/fusl/src/unistd/pwritev.c |
@@ -4,10 +4,9 @@ |
#include "syscall.h" |
#include "libc.h" |
-ssize_t pwritev(int fd, const struct iovec *iov, int count, off_t ofs) |
-{ |
- return syscall_cp(SYS_pwritev, fd, iov, count, |
- (long)(ofs), (long)(ofs>>32)); |
+ssize_t pwritev(int fd, const struct iovec* iov, int count, off_t ofs) { |
+ return syscall_cp(SYS_pwritev, fd, iov, count, (long)(ofs), |
+ (long)(ofs >> 32)); |
} |
LFS64(pwritev); |