diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-04-27 05:40:52 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-04-27 05:40:52 +0000 |
commit | c34a85446529c61f78114c3d87cd5fad30cfbfe5 (patch) | |
tree | 76307a4c3ce7acfb813eb4e6b63eb22927c408cb | |
parent | 60fdeb057a53597bbd1b05b9fbc7c2d05fe8d143 (diff) | |
download | openocd_libswd-c34a85446529c61f78114c3d87cd5fad30cfbfe5.tar.gz openocd_libswd-c34a85446529c61f78114c3d87cd5fad30cfbfe5.tar.bz2 openocd_libswd-c34a85446529c61f78114c3d87cd5fad30cfbfe5.tar.xz openocd_libswd-c34a85446529c61f78114c3d87cd5fad30cfbfe5.zip |
Philippe Vachon <philippe@cowpig.ca> 64 bit host fixes
git-svn-id: svn://svn.berlios.de/openocd/trunk@1534 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/flash/mflash.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/flash/mflash.c b/src/flash/mflash.c index 10830b25..08aad9f1 100644 --- a/src/flash/mflash.c +++ b/src/flash/mflash.c @@ -473,14 +473,16 @@ static int mg_mflash_read_sects(void *buff, u32 sect_num, u32 sect_cnt) residue = sect_cnt % 256; for (i = 0; i < quotient; i++) { - LOG_DEBUG("sect num : %u buff : 0x%8.8x", sect_num, (u32)buff_ptr); + LOG_DEBUG("sect num : %u buff : 0x%0lx", sect_num, + (unsigned long)buff_ptr); mg_mflash_do_read_sects(buff_ptr, sect_num, 256); sect_num += 256; buff_ptr += 256 * MG_MFLASH_SECTOR_SIZE; } if (residue) { - LOG_DEBUG("sect num : %u buff : %8.8x", sect_num, (u32)buff_ptr); + LOG_DEBUG("sect num : %u buff : %0lx", sect_num, + (unsigned long)buff_ptr); mg_mflash_do_read_sects(buff_ptr, sect_num, residue); } @@ -542,14 +544,16 @@ static int mg_mflash_write_sects(void *buff, u32 sect_num, u32 sect_cnt) residue = sect_cnt % 256; for (i = 0; i < quotient; i++) { - LOG_DEBUG("sect num : %u buff : %8.8x", sect_num, (u32)buff_ptr); + LOG_DEBUG("sect num : %u buff : %0lx", sect_num, + (unsigned long)buff_ptr); mg_mflash_do_write_sects(buff_ptr, sect_num, 256); sect_num += 256; buff_ptr += 256 * MG_MFLASH_SECTOR_SIZE; } if (residue) { - LOG_DEBUG("sect num : %u buff : %8.8x", sect_num, (u32)buff_ptr); + LOG_DEBUG("sect num : %u buff : %0lx", sect_num, + (unsigned long)buff_ptr); mg_mflash_do_write_sects(buff_ptr, sect_num, residue); } |