diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-08-16 10:03:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-16 10:03:55 +0200 |
commit | ebf89f46e3f69d0bb8aa4c836c52ee4964431f6c (patch) | |
tree | 8bf4c50435bc570e5f495ca931802bfe2712dfcf | |
parent | 019a64630bf293781f0ac4780b13d08bd2a20810 (diff) | |
parent | 13cbd1e4aebf7b665a10360957de9c307decedfc (diff) |
Merge pull request #984 from lnslbrty/fix/invalid-fncall-dpdk
Fixed invalid dpdk fn call.
-rw-r--r-- | example/ndpiReader.c | 2 |
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 |