[dpdk-dev] [PATCH v2] testpmd: fix wrong variable type in ieee1588fwd for 32 bits

2015-07-22 Thread Thomas Monjalon
> > In ieee1588fwd.c, timestamp.tv_sec is a time_t variable, which is a long > > int, but > > it was being printed with PRIu64, causing an issue on 32 bits. > > > > Signed-off-by: Pablo de Lara > Acked-by: Wenzhuo Lu Applied, thanks

[dpdk-dev] [PATCH v2] testpmd: fix wrong variable type in ieee1588fwd for 32 bits

2015-07-22 Thread Pablo de Lara
In ieee1588fwd.c, timestamp.tv_sec is a time_t variable, which is a long int, but it was being printed with PRIu64, causing an issue on 32 bits. Signed-off-by: Pablo de Lara --- Changes in v2: - Corrected wrong commit message app/test-pmd/ieee1588fwd.c | 4 ++-- 1 file changed, 2 insertions(+)

[dpdk-dev] [PATCH v2] testpmd: fix wrong variable type in ieee1588fwd for 32 bits

2015-07-22 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Pablo de Lara > Sent: Wednesday, July 22, 2015 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v2] testpmd: fix wrong variable type in ieee1588fwd > for 32 bits >