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

Unified Diff: fusl/src/linux/mount.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/linux/mount.c
diff --git a/fusl/src/linux/mount.c b/fusl/src/linux/mount.c
index 34e11af120353e07961d05bb60f568457ca7c9c6..734b410753bdb28f02eb220b9f4e75adab849944 100644
--- a/fusl/src/linux/mount.c
+++ b/fusl/src/linux/mount.c
@@ -1,17 +1,18 @@
#include <sys/mount.h>
#include "syscall.h"
-int mount(const char *special, const char *dir, const char *fstype, unsigned long flags, const void *data)
-{
- return syscall(SYS_mount, special, dir, fstype, flags, data);
+int mount(const char* special,
+ const char* dir,
+ const char* fstype,
+ unsigned long flags,
+ const void* data) {
+ return syscall(SYS_mount, special, dir, fstype, flags, data);
}
-int umount(const char *special)
-{
- return syscall(SYS_umount2, special, 0);
+int umount(const char* special) {
+ return syscall(SYS_umount2, special, 0);
}
-int umount2(const char *special, int flags)
-{
- return syscall(SYS_umount2, special, flags);
+int umount2(const char* special, int flags) {
+ return syscall(SYS_umount2, special, flags);
}

Powered by Google App Engine
This is Rietveld 408576698