aboutsummaryrefslogtreecommitdiff
path: root/example/intrusion_detection.c
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2021-08-20 18:11:13 +0200
committerGitHub <noreply@github.com>2021-08-20 18:11:13 +0200
commit8fdffbf3a17ebfc8e7043264cce516d23e9f5345 (patch)
treea6ba2b4db0813272b8f54deb65e4fa15490245a6 /example/intrusion_detection.c
parent55eec29c08fa2cf66f5f3ef8868ce4e0de52111f (diff)
Compile everything with "-W -Wall -Wno-unused-parameter" flags (#1276)
Fix all the warnings. Getting rid of "-Wno-unused-parameter" is quite complex because some parameters usage depends on compilation variable (i.e. `--enable-debug-messages`). The "-Werror" flag has been added only in Travis builds to avoid breaking the builds to users using uncommon/untested OS/compiler/enviroment. Tested on: * x86_64; Ubuntu 20.04; gcc 7,8,9,10,11; clang 7,8,9,10,11,12 * x86_64; CentOS 7.7; gcc 4.8.5 (with "--disable-gcrypt" flag) * Raspberry 4; Debian 10.10; gcc 8.3.0
Diffstat (limited to 'example/intrusion_detection.c')
-rw-r--r--example/intrusion_detection.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/example/intrusion_detection.c b/example/intrusion_detection.c
index f70a75dac..4abee8811 100644
--- a/example/intrusion_detection.c
+++ b/example/intrusion_detection.c
@@ -44,7 +44,8 @@ double normalize(ndpi_norm_value* tresholds){
double get_flow_score(ndpi_norm_value* scores, int n_metrics){
double flow_score = 0;
- for(int i=0; i<n_metrics; i++){
+ int i;
+ for(i=0; i<n_metrics; i++){
flow_score += normalize(&scores[i]);
}
return flow_score;