xen-mfndump: Use inttypes.h to format uint64_t types.
authorIan Campbell <ian.campbell@citrix.com>
Sat, 14 Sep 2013 07:38:26 +0000 (08:38 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Sat, 14 Sep 2013 07:40:17 +0000 (08:40 +0100)
commit593470233ff38385df9dcf5690cc58c7a4fb290d
tree686ee9426e4d8c6840a2d4fe97054a251f99404c
parentb639592b24dbe8f48edae17b01aec09b5e4f5a0e
xen-mfndump: Use inttypes.h to format uint64_t types.

Fixes 32-bit build:

cc1: warnings being treated as errors
xen-mfndump.c: In function 'dump_ptes_func':
xen-mfndump.c:236: error: format '%lx' expects type 'long unsigned int', but argument 3 has type 'uint64_t'
xen-mfndump.c: In function 'lookup_pte_func':
xen-mfndump.c:305: error: format '%lx' expects type 'long unsigned int', but argument 5 has type 'uint64_t'

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
tools/misc/xen-mfndump.c