aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-03-23 16:20:42 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2012-03-23 16:20:42 +0100
commitdb6c60af013661da85f53845d38ca51c80d44413 (patch)
tree48e958f3bfabadfb70059d07a0dbfeb6018a43e1
parente2c6c45b65f91ce844975b2577f628d747a0416c (diff)
downloadalpine-conf-db6c60af013661da85f53845d38ca51c80d44413.tar.bz2
alpine-conf-db6c60af013661da85f53845d38ca51c80d44413.tar.xz
uniso: fix compile warning on x86_64
-rw-r--r--uniso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uniso.c b/uniso.c
index 7606b0c..bc335ea 100644
--- a/uniso.c
+++ b/uniso.c
@@ -340,7 +340,7 @@ static int queue_reader(
if (offset < ctx->pos) {
fprintf(stderr, "ERROR: non-linear reads are not supported "
- "(asked %x, we are at %x)\n",
+ "(asked %zx, we are at %zx)\n",
offset, ctx->last_queued_read);
return -1;
}