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

Unified Diff: fusl/src/mq/mq_timedsend.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/mq/mq_timedsend.c
diff --git a/fusl/src/mq/mq_timedsend.c b/fusl/src/mq/mq_timedsend.c
index 1c00aa0b28660e0dadc32c4575bfccc00f5fa5c6..dc0e2dccb6d9be9a68dd71b6e821f25b46019c81 100644
--- a/fusl/src/mq/mq_timedsend.c
+++ b/fusl/src/mq/mq_timedsend.c
@@ -1,7 +1,10 @@
#include <mqueue.h>
#include "syscall.h"
-int mq_timedsend(mqd_t mqd, const char *msg, size_t len, unsigned prio, const struct timespec *at)
-{
- return syscall_cp(SYS_mq_timedsend, mqd, msg, len, prio, at);
+int mq_timedsend(mqd_t mqd,
+ const char* msg,
+ size_t len,
+ unsigned prio,
+ const struct timespec* at) {
+ return syscall_cp(SYS_mq_timedsend, mqd, msg, len, prio, at);
}

Powered by Google App Engine
This is Rietveld 408576698