pci: fix address domain format size
authorTal Shnaiderman <talshn@mellanox.com>
Mon, 29 Jun 2020 12:37:36 +0000 (15:37 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 29 Jun 2020 22:02:54 +0000 (00:02 +0200)
commit8517072c8715556968b59e5872f580c7cad2e53c
tree22fe53d666af50af4457e4ada6f587559e836765
parentb137f953665845fcd1c2e719c26d02eb23057174
pci: fix address domain format size

the struct rte_pci_addr defines domain as uint32_t variable however
the PCI_PRI_FMT macro used for logging the struct sets the format
of domain to uint16_t.

The mismatch causes the following warning messages
in Windows clang build:

format specifies type 'unsigned short' but the argument
has type 'uint32_t' (aka 'unsigned int') [-Wformat]

Fixes: af75078fece3 ("first public release")
Cc: stable@dpdk.org
Signed-off-by: Tal Shnaiderman <talshn@mellanox.com>
lib/librte_pci/rte_pci.h