From bb85e730783ae34808e42c3107759f43106a9b1d Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Wed, 6 Jul 2016 19:06:02 +0200 Subject: lib: Fix crapped up indentation This fixes some crapped up indentation in logs.h --- include/ouroboros/logs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ouroboros/logs.h') 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 { \ -- cgit v1.2.3