Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(478)

Unified Diff: fusl/src/unistd/pwritev.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698