aboutsummaryrefslogtreecommitdiff
path: root/example/ndpiReader.c
diff options
context:
space:
mode:
authorLuca Deri <lucaderi@users.noreply.github.com>2020-08-16 10:03:55 +0200
committerGitHub <noreply@github.com>2020-08-16 10:03:55 +0200
commitebf89f46e3f69d0bb8aa4c836c52ee4964431f6c (patch)
tree8bf4c50435bc570e5f495ca931802bfe2712dfcf /example/ndpiReader.c
parent019a64630bf293781f0ac4780b13d08bd2a20810 (diff)
parent13cbd1e4aebf7b665a10360957de9c307decedfc (diff)
Merge pull request #984 from lnslbrty/fix/invalid-fncall-dpdk
Fixed invalid dpdk fn call.
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r--example/ndpiReader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index 03ab1df4a..5202c8b78 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -3121,7 +3121,7 @@ void * processing_thread(void *_thread_id) {
gettimeofday(&h.ts, NULL);
ndpi_process_packet((u_char*)&thread_id, &h, (const u_char *)data);
- rte_pktmbuf_ndpi_free(bufs[i]);
+ rte_pktmbuf_free(bufs[i]);
}
}
#else