diff options
author | Drew DeVault <[email protected]> | 2015-08-18 07:19:20 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-18 07:20:34 -0400 |
commit | 2139001c9f61a84ed1ac581a54bb2bde68928afd (patch) | |
tree | a6efb486fdb71675775253d79e9550b5fc1d2f67 /sway/log.c | |
parent | af1b3d97550c749de4e71f50784dc17f1a31c135 (diff) |
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.
Diffstat (limited to 'sway/log.c')
-rw-r--r-- | sway/log.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) { |