summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io-module/mts_io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/io-module/mts_io.h b/io-module/mts_io.h
index 12647fb..2c4b7b6 100644
--- a/io-module/mts_io.h
+++ b/io-module/mts_io.h
@@ -17,7 +17,7 @@
#define log_warning(format, ...) __log(KERN_WARNING, "WARNING", format , ## __VA_ARGS__)
#define log_notice(format, ...) __log(KERN_NOTICE, "NOTICE", format , ## __VA_ARGS__)
#define log_info(format, ...) __log(KERN_INFO, "INFO", format , ## __VA_ARGS__)
-#if DEBUG
+#ifdef DEBUG
# define log_debug(format, ...) __log(KERN_DEBUG, "DEBUG", format , ## __VA_ARGS__)
#else
# define log_debug(format, ...) do {} while (0)