From: Thomas Monjalon Date: Thu, 23 Jun 2016 20:46:22 +0000 (+0200) Subject: net/virtio-user: fix 32-bit build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=479e160b2ec30d97c116ba348bdd312dc930bb10;p=dpdk.git net/virtio-user: fix 32-bit build The compilation for 32-bit fails when CONFIG_RTE_VIRTIO_USER is enabled: drivers/net/virtio/virtio_user_ethdev.c:84:47: error: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 5 has type ‘size_t {aka unsigned int}’ Fixes: e9efa4d93821 ("net/virtio-user: add new virtual PCI driver") Signed-off-by: Thomas Monjalon --- diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c index 9216182a36..5ab2471195 100644 --- a/drivers/net/virtio/virtio_user_ethdev.c +++ b/drivers/net/virtio/virtio_user_ethdev.c @@ -81,7 +81,7 @@ virtio_user_write_dev_config(struct virtio_hw *hw, size_t offset, for (i = 0; i < ETHER_ADDR_LEN; ++i) dev->mac_addr[i] = ((const uint8_t *)src)[i]; else - PMD_DRV_LOG(ERR, "not supported offset=%" PRIu64 ", len=%d\n", + PMD_DRV_LOG(ERR, "not supported offset=%zu, len=%d\n", offset, length); }