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

2025-02-19 Thread Andre Muezerie
On Tue, Feb 18, 2025 at 05:07:03PM +, Bruce Richardson wrote: > On Tue, Feb 18, 2025 at 09:03:01AM -0800, Andre Muezerie wrote: > > On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote: > > > On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote: > > > > Compiling with MSVC

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

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 09:03:01AM -0800, Andre Muezerie wrote: > On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote: > > On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote: > > > Compiling with MSVC results in warnings like the one below: > > > > > > app/test-pmd/csumonl

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

2025-02-18 Thread Andre Muezerie
On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote: > On Tue, Feb 18, 2025 at 08:32:02AM -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 a

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

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:02AM -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 v2 03/10] test-pmd: fix printf format string mismatch

2025-02-18 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 Signed-off-by: Chengwen Feng --- app/tes