summaryrefslogtreecommitdiffstats
path: root/src/core/debug.c
diff options
context:
space:
mode:
authorMichael Brown2007-12-06 22:38:23 +0100
committerMichael Brown2007-12-06 22:38:23 +0100
commitbe6ada2b7b0a3823180178f9c5b591a9a109379c (patch)
treede4b950ac1a54be9ade1e250f8d29e621f4a660e /src/core/debug.c
parentAdd copyright, clean up comments a bit, remove unnecessary code. (diff)
downloadipxe-be6ada2b7b0a3823180178f9c5b591a9a109379c.tar.gz
ipxe-be6ada2b7b0a3823180178f9c5b591a9a109379c.tar.xz
ipxe-be6ada2b7b0a3823180178f9c5b591a9a109379c.zip
Add missing format qualifier
Diffstat (limited to 'src/core/debug.c')
-rw-r--r--src/core/debug.c2
1 files changed, 1 insertions, 1 deletions
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;
}