hash_multiwriter_autotest: fix printf parameters
Checks
Commit Message
Compiling with MSVC logs the warnings below, which result in
build error:
../app/test/test_hash_multiwriter.c(71): warning C4476: 'printf' :
unknown type field character ''' in format specifier
../app/test/test_hash_multiwriter.c(73): warning C4474: 'printf' :
too many arguments passed for format string
../app/test/test_hash_multiwriter.c(73): note: placeholders and their
parameters expect 2 variadic arguments, but 4 were provided
Signed-off-by: Andre Muezerie <andremue@linux.microsoft.com>
---
app/test/test_hash_multiwriter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Recheck-request: iol-intel-Performance
There was an infra failure with the Arm Grace server about 12 hours ago
which caused this failure - sending a retest request.
@@ -68,7 +68,7 @@ test_hash_multiwriter_worker(void *arg)
*/
offset = pos_core * tbl_multiwriter_test_params.nb_tsx_insertion;
- printf("Core #%d inserting %d: %'"PRId64" - %'"PRId64"\n",
+ printf("Core #%d inserting %d: %" PRId64 " - %" PRId64 "\n",
lcore_id, tbl_multiwriter_test_params.nb_tsx_insertion,
offset,
offset + tbl_multiwriter_test_params.nb_tsx_insertion - 1);