aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2024-05-07 10:04:11 +0200
committerLuca Deri <deri@ntop.org>2024-05-07 10:04:11 +0200
commit0d495294bfdd5b4ba13a78de2c76f3682b20c888 (patch)
tree6064b5cc43ae4850fd2dfc132007100cf0159dce /src
parent6195dbad76a5a63fdcce477bbfeaa41ce73028f3 (diff)
Win warning fixes
Diffstat (limited to 'src')
-rw-r--r--src/include/ndpi_private.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/ndpi_private.h b/src/include/ndpi_private.h
index ce689354d..988e26ac9 100644
--- a/src/include/ndpi_private.h
+++ b/src/include/ndpi_private.h
@@ -465,11 +465,15 @@ struct ndpi_detection_module_struct {
#else /* not defined NDPI_ENABLE_DEBUG_MESSAGES */
# ifdef WIN32
+/*
+* Already defined in ndpi_define.h
+*
# define NDPI_LOG(mod, ...) { (void)mod; }
# define NDPI_LOG_ERR(mod, ...) { (void)mod; }
# define NDPI_LOG_INFO(mod, ...) { (void)mod; }
# define NDPI_LOG_DBG(mod, ...) { (void)mod; }
# define NDPI_LOG_DBG2(mod, ...) { (void)mod; }
+*/
# else
# define NDPI_LOG(proto, mod, log_level, args...) { /* printf(args); */ }
# ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION