Re: [PATCH v2 04/10] test-pmd: do explicit 64-bit shift to avoid implicit conversion

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:03AM -0800, Andre Muezerie wrote: > Compiling with MSVC results in warnings like the one below: > > app/test-pmd/util.c(201): warning C4334: '<<': result of 32-bit shift > implicitly converted to 64 bits (was 64-bit shift intended?) > > Signed-off-by: Andre Mueze

[PATCH v2 04/10] test-pmd: do explicit 64-bit shift to avoid implicit conversion

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in warnings like the one below: app/test-pmd/util.c(201): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/test-pmd/cmdline.c | 4 ++-- app