Browse Source

Fix missing leading space in macro LOGI()

pull/612/head
Kim 9 years ago
committed by Max Lv
parent
commit
b3b522fd5e
1 changed files with 1 additions and 1 deletions
  1. 2
      src/utils.h

2
src/utils.h

@ -150,7 +150,7 @@ extern int use_syslog;
fprintf(stderr, "\e[01;32m %s INFO: \e[0m" format "\n", timestr, \
## __VA_ARGS__); \
} else { \
fprintf(stderr, "%s INFO: " format "\n", timestr, \
fprintf(stderr, " %s INFO: " format "\n", timestr, \
## __VA_ARGS__); \
} \
} \

Loading…
Cancel
Save