[PATCH] xfstests: fix format string warnings in aio-dio-extend-stat.c
Christoph Hellwig
hch at infradead.org
Thu Jan 21 05:34:21 CST 2010
Signed-off-by: Christoph Hellwig <hch at lst.de>
Index: xfstests-dev/src/aio-dio-regress/aio-dio-extend-stat.c
===================================================================
--- xfstests-dev.orig/src/aio-dio-regress/aio-dio-extend-stat.c 2010-01-21 11:27:36.000000000 +0000
+++ xfstests-dev/src/aio-dio-regress/aio-dio-extend-stat.c 2010-01-21 11:28:15.000000000 +0000
@@ -149,8 +149,9 @@ void fun_read(void *ptr)
if (filestat.st_size < exSize)
fail("write of %lu bytes @%llu finished, "
"expected filesize at least %llu, but "
- "got %ld\n", event->obj->u.c.nbytes,
- event->obj->u.c.offset, exSize, filestat.st_size);
+ "got %lld\n", event->obj->u.c.nbytes,
+ event->obj->u.c.offset, exSize,
+ (long long)filestat.st_size);
}
}
}
More information about the xfs
mailing list