mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfstests: fix format string warning in aio-dio-extend-stat.c
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Alex Elder <aelder@sgi.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user