diff options
Diffstat (limited to 'sway/log.c')
-rw-r--r-- | sway/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"); } } |