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 <michael.qiu@intel.com>
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);