From: Michael Qiu Date: Thu, 26 Nov 2015 07:21:32 +0000 (+0800) Subject: app/test: fix build with icc X-Git-Tag: spdx-start~7929 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=8c4c9915fcd6d6feb463ee29da4416df4d87188c;p=dpdk.git app/test: fix build with icc app/test/test_cryptodev_perf.c(1837): error #192: unrecognized character escape sequence printf("\n%u\t%u\t\%u\t\t%u\t\t%u", dev_num, 0, "\%u" is the root cause of this issue, just fix it. Fixes: 202d375c60bc ("app/test: add cryptodev unit and performance tests") Signed-off-by: Michael Qiu --- diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c index f0cca8b09b..1744e13ab3 100644 --- a/app/test/test_cryptodev_perf.c +++ b/app/test/test_cryptodev_perf.c @@ -1834,7 +1834,7 @@ test_perf_crypto_qp_vary_burst_size(uint16_t dev_num) num_received += burst_received; } - printf("\n%u\t%u\t\%u\t\t%u\t\t%u", dev_num, 0, + printf("\n%u\t%u\t%u\t\t%u\t\t%u", dev_num, 0, num_sent, num_received, burst_size); printf("\t\t%"PRIu64, retries); printf("\t\t\t%"PRIu64, total_cycles/num_received);