aboutsummaryrefslogtreecommitdiff
path: root/sway/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/log.c')
-rw-r--r--sway/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/log.c b/sway/log.c
index f65f2ab3..7a88b6d1 100644
--- 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");
}
}