On 26 January 2017 at 23:15, Alin Serdean <[email protected]> wrote:
> 'client_id' is of type unsigned int. Change the printf specifier to match > it. > > Signed-off-by: Alin Gabriel Serdean <[email protected]> > Applied. > --- > tests/dpdk/ring_client.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/dpdk/ring_client.c b/tests/dpdk/ring_client.c > index 8a43c64..b153713 100644 > --- a/tests/dpdk/ring_client.c > +++ b/tests/dpdk/ring_client.c > @@ -176,7 +176,7 @@ main(int argc, char *argv[]) > > RTE_LOG(INFO, APP, "Finished Process Init.\n"); > > - printf("\nClient process %d handling packets\n", client_id); > + printf("\nClient process %u handling packets\n", client_id); > printf("[Press Ctrl-C to quit ...]\n"); > > for (;;) { > -- > 2.10.2.windows.1 > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev > _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
