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

Unified Diff: fusl/src/stdio/stderr.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/stdio/stderr.c
diff --git a/fusl/src/stdio/stderr.c b/fusl/src/stdio/stderr.c
index 229c8651dd5bd14e31ada5bb542f0c62f19a55bf..56a8c4217ee3e6cf70d105fb10bcbb44a5593019 100644
--- a/fusl/src/stdio/stderr.c
+++ b/fusl/src/stdio/stderr.c
@@ -2,15 +2,15 @@
static unsigned char buf[UNGET];
static FILE f = {
- .buf = buf+UNGET,
- .buf_size = 0,
- .fd = 2,
- .flags = F_PERM | F_NORD,
- .lbf = -1,
- .write = __stdio_write,
- .seek = __stdio_seek,
- .close = __stdio_close,
- .lock = -1,
+ .buf = buf + UNGET,
+ .buf_size = 0,
+ .fd = 2,
+ .flags = F_PERM | F_NORD,
+ .lbf = -1,
+ .write = __stdio_write,
+ .seek = __stdio_seek,
+ .close = __stdio_close,
+ .lock = -1,
};
-FILE *const stderr = &f;
-FILE *volatile __stderr_used = &f;
+FILE* const stderr = &f;
+FILE* volatile __stderr_used = &f;

Powered by Google App Engine
This is Rietveld 408576698