diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-08-15 12:38:47 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-08-15 12:38:47 +0200 |
commit | 13cbd1e4aebf7b665a10360957de9c307decedfc (patch) | |
tree | b8f9a96766f3d1735a259718fa9bea7e8f6762b3 | |
parent | 46ec91ca4bc1f8ea4d6f81a7ec31e721a4def871 (diff) |
Fixed invalid dpdk fn call.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-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 |