Re: [dpdk-dev] [PATCH] examples/rxtx_callbacks: fix port ID format specifier

2021-05-05 Thread Tyler Retzlaff
On Tue, May 04, 2021 at 09:48:22AM +0300, Dmitry Kozlyuk wrote: > 2021-05-03 17:11 (UTC-0700), Tyler Retzlaff: > > On Sun, May 02, 2021 at 05:56:56AM +0300, Dmitry Kozlyuk wrote: > > > Use "%u" and a cast as in other places when port ID is formatted. > > > This fixes -Wformat warning with clang 10.

Re: [dpdk-dev] [PATCH] examples/rxtx_callbacks: fix port ID format specifier

2021-05-03 Thread Dmitry Kozlyuk
2021-05-03 17:11 (UTC-0700), Tyler Retzlaff: > On Sun, May 02, 2021 at 05:56:56AM +0300, Dmitry Kozlyuk wrote: > > Use "%u" and a cast as in other places when port ID is formatted. > > This fixes -Wformat warning with clang 10.0.0 on Windows. > > > > Fixes: f8244c6399d9 ("ethdev: increase port id

Re: [dpdk-dev] [PATCH] examples/rxtx_callbacks: fix port ID format specifier

2021-05-03 Thread Tyler Retzlaff
On Sun, May 02, 2021 at 05:56:56AM +0300, Dmitry Kozlyuk wrote: > Use "%u" and a cast as in other places when port ID is formatted. > This fixes -Wformat warning with clang 10.0.0 on Windows. > > Fixes: f8244c6399d9 ("ethdev: increase port id range") > Cc: sta...@dpdk.org > > Signed-off-by: Dmitr