sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 69edcb88eada370ae95b8d19dd63b426f3ce165f
parent c688ff704d29d000a4d62a4a1e927116c4f9eba9
Author: jdiez17 <jose.manuel.diez@gmail.com>
Date:   Sun,  9 Aug 2015 20:41:54 +0200

style: More compliance

Diffstat:
Msway/log.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/log.c b/sway/log.c @@ -38,7 +38,7 @@ void sway_log(int verbosity, char* format, ...) { c = sizeof(verbosity_colors) / sizeof(char *) - 1; } - if(colored) { + if (colored) { fprintf(stderr, verbosity_colors[c]); } @@ -47,7 +47,7 @@ void sway_log(int verbosity, char* format, ...) { vfprintf(stderr, format, args); va_end(args); - if(colored) { + if (colored) { fprintf(stderr, "\x1B[0m\n"); } }