Re: [PATCH 03/10] test-pmd: fix printf format string mismatch

2025-02-11 Thread fengchengwen
Signed-off-by: Chengwen Feng On 2025/2/12 6:01, Andre Muezerie wrote: > Compiling with MSVC results in warnings like the one below: > > app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string > '%d' requires an argument of type 'int', > but variadic argument 1 has type 'ui

Re: [PATCH 03/10] test-pmd: fix printf format string mismatch

2025-02-11 Thread Stephen Hemminger
On Tue, 11 Feb 2025 14:01:59 -0800 Andre Muezerie wrote: > Compiling with MSVC results in warnings like the one below: > > app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string > '%d' requires an argument of type 'int', > but variadic argument 1 has type 'uint64_t' > >

[PATCH 03/10] test-pmd: fix printf format string mismatch

2025-02-11 Thread Andre Muezerie
Compiling with MSVC results in warnings like the one below: app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string '%d' requires an argument of type 'int', but variadic argument 1 has type 'uint64_t' Signed-off-by: Andre Muezerie --- app/test-pmd/csumonly.c | 12 ++--