From 2139001c9f61a84ed1ac581a54bb2bde68928afd Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 18 Aug 2015 07:19:20 -0400 Subject: Coding style enforcement This was done by hand, so I might have missed things. If anyone knows of a good C style enforcement tool, let me know. --- sway/log.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sway/log.c') diff --git a/sway/log.c b/sway/log.c index 03639ae4..8e380ffe 100644 --- a/sway/log.c +++ b/sway/log.c @@ -17,8 +17,7 @@ static const char *verbosity_colors[] = { void init_log(int verbosity) { v = verbosity; - /* set FD_CLOEXEC flag to prevent programs called with exec to write into - * logs */ + /* set FD_CLOEXEC flag to prevent programs called with exec to write into logs */ int i, flag; int fd[] = { STDOUT_FILENO, STDIN_FILENO, STDERR_FILENO }; for (i = 0; i < 3; ++i) { -- cgit v1.2.3