pci: use z specifier to format size_t
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 15 Feb 2018 22:25:49 +0000 (14:25 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 4 Apr 2018 11:43:33 +0000 (13:43 +0200)
commit97d4aaffa7e5eb2829549bbecc2959f941f4a088
tree1925b5d1c06ff7f0dc1d46dfaa7fecf559d587e1
parentaded107a7428d54fea3ef7d9fb99729a2808eb75
pci: use z specifier to format size_t

This addresses potential issues where size_t and off_t can vary
on some platforms.  For size_t the best way to format the value
is to use the z modifier to printf. For off_t need to cast to
long long to handle 64 bit offset on 32 bit platforms.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
lib/librte_pci/rte_pci.c