[dpdk-dev] [PATCH] app/test: Fix compile issue with icc

2015-11-26 Thread Thomas Monjalon
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 Fixes: 202d375c60bc ("app/test: ad

[dpdk-dev] [PATCH] app/test: Fix compile issue with icc

2015-11-26 Thread 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 --- app/test/test_cryptodev_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 de