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

Unified Diff: fusl/src/passwd/getspnam.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/passwd/getspnam.c
diff --git a/fusl/src/passwd/getspnam.c b/fusl/src/passwd/getspnam.c
index 041f896525f1e68f6fbf8076a3bb42a154f0752b..1ee1127ad26245222085cdd9ade10e6ead977531 100644
--- a/fusl/src/passwd/getspnam.c
+++ b/fusl/src/passwd/getspnam.c
@@ -2,16 +2,18 @@
#define LINE_LIM 256
-struct spwd *getspnam(const char *name)
-{
- static struct spwd sp;
- static char *line;
- struct spwd *res;
- int e;
+struct spwd* getspnam(const char* name) {
+ static struct spwd sp;
+ static char* line;
+ struct spwd* res;
+ int e;
- if (!line) line = malloc(LINE_LIM);
- if (!line) return 0;
- e = getspnam_r(name, &sp, line, LINE_LIM, &res);
- if (e) errno = e;
- return res;
+ if (!line)
+ line = malloc(LINE_LIM);
+ if (!line)
+ return 0;
+ e = getspnam_r(name, &sp, line, LINE_LIM, &res);
+ if (e)
+ errno = e;
+ return res;
}

Powered by Google App Engine
This is Rietveld 408576698