From patchwork Sat Oct 13 00:26:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,4/7] disk: Address cast and format errors From: Simon Glass X-Patchwork-Id: 191272 Message-Id: <1350087972-1581-4-git-send-email-sjg@chromium.org> To: U-Boot Mailing List Cc: Tom Rini , Taylor Hutt Date: Fri, 12 Oct 2012 17:26:09 -0700 From: Taylor Hutt This change addresses a few printf-formatting errors, and a typecast error. Signed-off-by: Taylor Hutt Signed-off-by: Simon Glass --- disk/part_efi.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/disk/part_efi.c b/disk/part_efi.c index 264ea9c..22a1dad 100644 --- a/disk/part_efi.c +++ b/disk/part_efi.c @@ -405,7 +405,7 @@ static gpt_entry *alloc_read_gpt_entries(block_dev_desc_t * dev_desc, count = le32_to_int(pgpt_head->num_partition_entries) * le32_to_int(pgpt_head->sizeof_partition_entry); - debug("%s: count = %lu * %lu = %u\n", __func__, + debug("%s: count = %lu * %lu = %zu\n", __func__, le32_to_int(pgpt_head->num_partition_entries), le32_to_int(pgpt_head->sizeof_partition_entry), count); @@ -415,7 +415,8 @@ static gpt_entry *alloc_read_gpt_entries(block_dev_desc_t * dev_desc, } if (count == 0 || pte == NULL) { - printf("%s: ERROR: Can't allocate 0x%X bytes for GPT Entries\n", + printf("%s: ERROR: Can't allocate 0x%zX " + "bytes for GPT Entries\n", __func__, count); return NULL; } @@ -457,7 +458,7 @@ static int is_pte_valid(gpt_entry * pte) sizeof(unused_guid.b)) == 0) { debug("%s: Found an unused PTE GUID at 0x%08X\n", __func__, - (unsigned int)pte); + (unsigned int)(uintptr_t)pte); return 0; } else {