From 88040f04492d9ae4966b7387aafc20fb779fcb09 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Fri, 20 Aug 2021 22:47:46 +0200 Subject: Compilation fix --- example/ndpiReader.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'example') diff --git a/example/ndpiReader.c b/example/ndpiReader.c index ab6e0f391..4015f9b8d 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -1053,12 +1053,14 @@ static void parseOptions(int argc, char **argv) { } #ifdef linux +#ifndef USE_DPDK for(thread_id = 0; thread_id < num_threads; thread_id++) core_affinity[thread_id] = -1; if(num_cores > 1 && bind_mask != NULL) { char *core_id = strtok(bind_mask, ":"); thread_id = 0; + while(core_id != NULL && thread_id < num_threads) { core_affinity[thread_id++] = atoi(core_id) % num_cores; core_id = strtok(NULL, ":"); @@ -1066,6 +1068,7 @@ static void parseOptions(int argc, char **argv) { } #endif #endif +#endif } /* ********************************** */ -- cgit v1.2.3