From dfbc7a4a8a7446da7152df2cdc395a9b19755e16 Mon Sep 17 00:00:00 2001 From: John Klug Date: Thu, 1 Oct 2020 13:50:28 -0500 Subject: Fix compiler warning --- io-module/mts_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3