From: David Brownell Date: Thu, 15 Oct 2009 03:24:31 +0000 (-0700) Subject: another portability update X-Git-Tag: v0.3.0-rc0~80 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a61b57a87fec48a41c7429715c477077b545d698;p=openocd another portability update Just use "%p" instead of consing up some integral type for pointer printf. Signed-off-by: David Brownell --- diff --git a/src/flash/mflash.c b/src/flash/mflash.c index 208125ed..63ba054a 100644 --- a/src/flash/mflash.c +++ b/src/flash/mflash.c @@ -474,8 +474,8 @@ static int mg_mflash_read_sects(void *buff, uint32_t sect_num, uint32_t sect_cnt residue = sect_cnt % 256; for (i = 0; i < quotient; i++) { - LOG_DEBUG("mflash: sect num : %" PRIu32 " buff : 0x%0lx", sect_num, - (unsigned long)buff_ptr); + LOG_DEBUG("mflash: sect num : %" PRIu32 " buff : %p", + sect_num, buff_ptr); ret = mg_mflash_do_read_sects(buff_ptr, sect_num, 256); if (ret != ERROR_OK) return ret; @@ -485,8 +485,8 @@ static int mg_mflash_read_sects(void *buff, uint32_t sect_num, uint32_t sect_cnt } if (residue) { - LOG_DEBUG("mflash: sect num : %" PRIx32 " buff : %0lx", sect_num, - (unsigned long)buff_ptr); + LOG_DEBUG("mflash: sect num : %" PRIx32 " buff : %p", + sect_num, buff_ptr); return mg_mflash_do_read_sects(buff_ptr, sect_num, residue); }