[PATCH] hash_multiwriter_autotest: fix printf parameters
Andre Muezerie
andremue at linux.microsoft.com
Wed Mar 5 20:45:55 CET 2025
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 at linux.microsoft.com>
---
app/test/test_hash_multiwriter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/test/test_hash_multiwriter.c b/app/test/test_hash_multiwriter.c
index 33d3147bd8..c24b09013f 100644
--- a/app/test/test_hash_multiwriter.c
+++ b/app/test/test_hash_multiwriter.c
@@ -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);
--
2.48.1.vfs.0.0
More information about the dev
mailing list