nvramtool: use C99 PRIx64 / PRId64 for uint64_t variables

In printf/printk, using %lld or %ld for uint64_t will warn on either
64bit or 32bit machines.  However, C99 defines PRIx64 / PRId64 to
provide the right modifiers for printing uint64_t variables. Use them
instead.

Change-Id: I68df5d069a1e99d1a75885173ddfd7815197afea
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/1053
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Stefan Reinauer 2012-05-24 13:36:30 -07:00 committed by Patrick Georgi
parent 0e740d3952
commit 9981cad801
1 changed files with 6 additions and 4 deletions

View File

@ -29,6 +29,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#include <stdint.h>
#include <inttypes.h>
#include <arpa/inet.h>
#include <string.h>
#include <sys/mman.h>
@ -655,10 +657,10 @@ static void memory_print_fn(const struct lb_record *rec)
start = unpack_lb64(ranges[i].start);
end = start + size - 1;
printf("%s memory:\n"
" from physical addresses 0x%016llx to 0x%016llx\n"
" size is 0x%016llx bytes (%lld in decimal)\n",
mem_type, start, end, size,
(unsigned long long)size);
" from physical addresses 0x%016" PRIx64
" to 0x%016" PRIx64 "\n size is 0x%016" PRIx64
" bytes (%" PRId64 " in decimal)\n",
mem_type, start, end, size, size);
if (++i >= entries)
break;