app/testpmd: fix ieee1588 32-bit timestamp log
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Wed, 22 Jul 2015 08:06:48 +0000 (09:06 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 22 Jul 2015 10:00:05 +0000 (12:00 +0200)
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 <pablo.de.lara.guarch@intel.com>
Acked-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
app/test-pmd/ieee1588fwd.c

index 069ee2e..b1a301b 100644 (file)
@@ -89,7 +89,7 @@ port_ieee1588_rx_timestamp_check(portid_t pi, uint32_t index)
                       (unsigned) pi);
                return;
        }
-       printf("Port %u RX timestamp value %"PRIu64"\n",
+       printf("Port %u RX timestamp value %lu\n",
               (unsigned) pi, timestamp.tv_sec);
 }
 
@@ -112,7 +112,7 @@ port_ieee1588_tx_timestamp_check(portid_t pi)
                       (unsigned) pi, (unsigned) MAX_TX_TMST_WAIT_MICROSECS);
                return;
        }
-       printf("Port %u TX timestamp value %"PRIu64" validated after "
+       printf("Port %u TX timestamp value %lu validated after "
               "%u micro-second%s\n",
               (unsigned) pi, timestamp.tv_sec, wait_us,
               (wait_us == 1) ? "" : "s");