From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Qiu Subject: [PATCH] app/test: Fix compile issue with icc Date: Thu, 26 Nov 2015 15:21:32 +0800 Message-ID: <1448522492-16239-1-git-send-email-michael.qiu@intel.com> To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id BBDFFC1C6 for ; Thu, 26 Nov 2015 08:21:40 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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. Signed-off-by: Michael Qiu --- app/test/test_cryptodev_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c index f0cca8b..1744e13 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); -- 1.9.3