summaryrefslogtreecommitdiff
path: root/misc/buildroot/toolchain/nxflat/readnxflat.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/buildroot/toolchain/nxflat/readnxflat.c')
-rw-r--r--misc/buildroot/toolchain/nxflat/readnxflat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/buildroot/toolchain/nxflat/readnxflat.c b/misc/buildroot/toolchain/nxflat/readnxflat.c
index 11d01882d..290b8c645 100644
--- a/misc/buildroot/toolchain/nxflat/readnxflat.c
+++ b/misc/buildroot/toolchain/nxflat/readnxflat.c
@@ -494,7 +494,7 @@ static void dump_hdr(struct nxflat_hdr_s *header)
header->h_magic[2], header->h_magic[3]);
printf("\nMEMORY MAP:\n");
- printf(" Text start %08lx\n", NXFLAT_HDR_SIZE);
+ printf(" Text start %08lx\n", (long)NXFLAT_HDR_SIZE);
printf(" Entry point %08x\n", get_nxflat32(&header->h_entry));
printf(" Data start %08x\n", get_nxflat32(&header->h_datastart));
printf(" Data end %08x\n", get_nxflat32(&header->h_dataend) - 1);