From ba8e61653ff3d703ef8143301ccdaaf9a0c1a7fe Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Wed, 29 Jan 2014 17:00:11 +0100 Subject: [PATCH] noux & 64bit: fix printf format-warning ref #989 --- ports/src/noux/block_file_system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/src/noux/block_file_system.h b/ports/src/noux/block_file_system.h index f8a8cbda4f..f2da91ced3 100644 --- a/ports/src/noux/block_file_system.h +++ b/ports/src/noux/block_file_system.h @@ -337,7 +337,7 @@ namespace Noux { * than block size, we also have to read the block first. */ if (displ > 0 || length < _block_size) { - PWRN("offset:%u block_size:%zd displacement:%zd length:%zu", + PWRN("offset:%zd block_size:%zd displacement:%zd length:%zu", _seek_offset, _block_size, displ, length); _block_io(blk_nr, _block_buffer, _block_size, false); @@ -414,7 +414,7 @@ namespace Noux { } if (displ > 0) - PWRN("offset:%u is not aligned to block_size:%zu" + PWRN("offset:%zd is not aligned to block_size:%zu" " displacement:%zu", _seek_offset, _block_size, displ);