diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-06 19:06:02 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-06 19:06:02 +0200 |
commit | bb85e730783ae34808e42c3107759f43106a9b1d (patch) | |
tree | c3753f440085a2126e399cb8667d99eb91a8ad6a /include | |
parent | b7696a17688bc338ac150f8d5ffd0b59c3206f77 (diff) | |
download | ouroboros-bb85e730783ae34808e42c3107759f43106a9b1d.tar.gz ouroboros-bb85e730783ae34808e42c3107759f43106a9b1d.zip |
lib: Fix crapped up indentation
This fixes some crapped up indentation in logs.h
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/logs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ouroboros/logs.h b/include/ouroboros/logs.h index 601d8340..0ffc5699 100644 --- a/include/ouroboros/logs.h +++ b/include/ouroboros/logs.h @@ -46,11 +46,11 @@ int set_logfile(char * filename); extern FILE * logfile; -#define __LOG(CLR, LVL, FMT, ARGS...) \ +#define __LOG(CLR, LVL, FMT, ARGS...) \ do { \ if (logfile != NULL) { \ fprintf(logfile, \ - OUROBOROS_PREFIX "(" LVL "): " \ + OUROBOROS_PREFIX "(" LVL "): " \ FMT ANSI_COLOR_RESET "\n", ##ARGS); \ fflush(logfile); \ } else { \ |