From: Michael Brown Date: Thu, 6 Dec 2007 21:38:23 +0000 (+0000) Subject: Add missing format qualifier X-Git-Tag: v0.9.3~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be6ada2b7b0a3823180178f9c5b591a9a109379c;p=thirdparty%2Fipxe.git Add missing format qualifier --- diff --git a/src/core/debug.c b/src/core/debug.c index d72b3df36..098304204 100644 --- a/src/core/debug.c +++ b/src/core/debug.c @@ -116,7 +116,7 @@ int check_region ( void *region, size_t len ) { } if ( in_corruption != 0 ) { - printf ( "to offset %#x (end of region)\n", len-1 ); + printf ( "to offset %#zx (end of region)\n", len-1 ); } return corrupted; }