DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/test: Fix compile issue with icc
@ 2015-11-26  7:21 Michael Qiu
  2015-11-26 21:16 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Qiu @ 2015-11-26  7:21 UTC (permalink / raw)
  To: 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 <michael.qiu@intel.com>
---
 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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] app/test: Fix compile issue with icc
  2015-11-26  7:21 [dpdk-dev] [PATCH] app/test: Fix compile issue with icc Michael Qiu
@ 2015-11-26 21:16 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2015-11-26 21:16 UTC (permalink / raw)
  To: Michael Qiu; +Cc: dev

2015-11-26 15:21, Michael Qiu:
> 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 <michael.qiu@intel.com>

Fixes: 202d375c60bc ("app/test: add cryptodev unit and performance tests")

Applied, thanks

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-26 21:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-26  7:21 [dpdk-dev] [PATCH] app/test: Fix compile issue with icc Michael Qiu
2015-11-26 21:16 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).