summaryrefslogtreecommitdiff
path: root/include/kitchensink/internal/utils/kitlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/kitchensink/internal/utils/kitlog.h')
-rw-r--r--include/kitchensink/internal/utils/kitlog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/kitchensink/internal/utils/kitlog.h b/include/kitchensink/internal/utils/kitlog.h
index 6b24763..d298592 100644
--- a/include/kitchensink/internal/utils/kitlog.h
+++ b/include/kitchensink/internal/utils/kitlog.h
@@ -2,10 +2,10 @@
#define KITLOG_H
#ifdef NDEBUG
- #define LOG(...)
+#define LOG(...)
#else
- #include <stdio.h>
- #define LOG(...) fprintf(stderr, __VA_ARGS__); fflush(stderr)
+#include <stdio.h>
+#define LOG(...) fprintf(stderr, __VA_ARGS__); fflush(stderr)
#endif
#endif // KITLOG_H