diff options
author | Daniel Bäder <openocd@eh-oh.de> | 2010-03-25 11:24:42 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-03-25 12:45:32 +0100 |
commit | 010492a1ede305d2375602afa26f50281fea3e2f (patch) | |
tree | 523e40e6201a6ab468ef4d7d2612a4f08f4633b8 /src/flash/nor | |
parent | e736468b0e25f255db60cfd6cb2f6a2e470ba50e (diff) | |
download | openocd+libswd-010492a1ede305d2375602afa26f50281fea3e2f.tar.gz openocd+libswd-010492a1ede305d2375602afa26f50281fea3e2f.tar.bz2 openocd+libswd-010492a1ede305d2375602afa26f50281fea3e2f.tar.xz openocd+libswd-010492a1ede305d2375602afa26f50281fea3e2f.zip |
change %x and %d to PRIx32 and PRId32 where needed for cygwin
Diffstat (limited to 'src/flash/nor')
-rw-r--r-- | src/flash/nor/pic32mx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/pic32mx.c b/src/flash/nor/pic32mx.c index 36744e6f..25403424 100644 --- a/src/flash/nor/pic32mx.c +++ b/src/flash/nor/pic32mx.c @@ -558,7 +558,7 @@ static int pic32mx_probe(struct flash_bank *bank) } } - LOG_INFO("flash size = %dkbytes", num_pages / 1024); + LOG_INFO("flash size = %" PRId32 "kbytes", num_pages / 1024); /* calculate numbers of pages */ num_pages /= page_size; |