Skip to content

Commit

Permalink
style: More compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
jdiez17 committed Aug 9, 2015
1 parent c688ff7 commit 69edcb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sway/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}

Expand All @@ -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");
}
}
Expand Down

0 comments on commit 69edcb8

Please sign in to comment.