From be6ada2b7b0a3823180178f9c5b591a9a109379c Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 6 Dec 2007 21:38:23 +0000 Subject: [PATCH] Add missing format qualifier --- src/core/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/debug.c b/src/core/debug.c index d72b3df3..09830420 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; }