From b1a6c6b8957b62ec8ada423abfdcfa5471c00147 Mon Sep 17 00:00:00 2001 From: Nardi Ivan Date: Wed, 15 Apr 2020 18:07:24 +0200 Subject: Fix some compilation warnings --- example/ndpiReader.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'example/ndpiReader.c') diff --git a/example/ndpiReader.c b/example/ndpiReader.c index d64918b85..f15ee0e66 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -218,6 +218,7 @@ FILE *trace = NULL; */ static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle); +#if 0 static void reduceBDbits(uint32_t *bd, unsigned int len) { int mask = 0; int shift = 0; @@ -238,6 +239,7 @@ static void reduceBDbits(uint32_t *bd, unsigned int len) { for(i = 0; i < len; i++) bd[i] = bd[i] >> shift; } +#endif /** * @brief Get flow byte distribution mean and variance @@ -1530,12 +1532,14 @@ static int acceptable(u_int32_t num_pkts){ /* *********************************************** */ +#if 0 static int receivers_sort(void *_a, void *_b) { struct receiver *a = (struct receiver *)_a; struct receiver *b = (struct receiver *)_b; return(b->num_pkts - a->num_pkts); } +#endif /* *********************************************** */ -- cgit v1.2.3