diff options
author | John Klug <john.klug@multitech.com> | 2020-10-01 13:50:28 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2020-10-01 13:50:28 -0500 |
commit | dfbc7a4a8a7446da7152df2cdc395a9b19755e16 (patch) | |
tree | bfdb4943ed4485c372a592185bd988ae44034661 | |
parent | 2924f4f38d18bd491f396e14e8f73f22fa3d394d (diff) | |
download | mts-io-dfbc7a4a8a7446da7152df2cdc395a9b19755e16.tar.gz mts-io-dfbc7a4a8a7446da7152df2cdc395a9b19755e16.tar.bz2 mts-io-dfbc7a4a8a7446da7152df2cdc395a9b19755e16.zip |
Fix compiler warning
-rw-r--r-- | io-module/mts_io.h | 2 |
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) |