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