examples/performance-thread: fix build without SSE4.1
authorThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 3 Feb 2016 18:56:38 +0000 (19:56 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 22 Mar 2016 18:22:06 +0000 (19:22 +0100)
commit26ebdfff3797e563deeb1d1b1c1394eeaf1f88ea
treec17c933bd1a6ec62b319a461268ff072fe03520f
parentd63ef5233e9a7df72855da5351f89f145d6df393
examples/performance-thread: fix build without SSE4.1

clang reports these errors:

error: too many arguments to function call, expected 2, have 3
examples/performance-thread/l3fwd-thread/main.c:1220:1: note:
'l3fwd_simple_forward' declared here

examples/l3fwd/main.c:550:1: error: unused function 'send_packetsx4'

The function is used only when ENABLE_MULTI_BUFFER_OPTIMIZE is 1.

Fixes: d48415e1fee3 ("examples/performance-thread: add l3fwd-thread app")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
examples/performance-thread/l3fwd-thread/main.c