aboutsummaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2021-06-01 19:34:19 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2021-06-01 19:34:19 +0200
commitf9ecb7e5b111193db0f5d714e748762ee2b8be1b (patch)
tree80f35a359b08785f772ae9da6687f8b651da8370 /src/log.h
parent21369ab14763faec0abeb4e669cb0db62121b6fd (diff)
downloaddns-f9ecb7e5b111193db0f5d714e748762ee2b8be1b.tar.gz
C89 Compat
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/log.h b/src/log.h
index 0f10745..b0c89e8 100644
--- a/src/log.h
+++ b/src/log.h
@@ -41,8 +41,10 @@ extern const char* log_loglevel_str[6];
}\
}
-// DEBUG Wrapper around LOGPRINTF wich is only compiled in in
-// _DEBUG mode for performance
+/*
+ * DEBUG Wrapper around LOGPRINTF wich is only compiled in in
+ * _DEBUG mode for performance
+ */
#ifdef _DEBUG
#define DEBUG(...) { LOGPRINTF(_LOG_DEBUG, __VA_ARGS__); }