| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH] xfstests: fix format string warnings in aio-dio-extend-stat.c |
| From: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
| Date: | Thu, 21 Jan 2010 06:34:21 -0500 |
| User-agent: | Mutt/1.5.19 (2009-01-05) |
Signed-off-by: Christoph Hellwig <hch@xxxxxx>
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);
}
}
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] xfstests: fix format string warnings in locktest.c, Christoph Hellwig |
|---|---|
| Next by Date: | Re: [PATCH] xfsprogs: Automatic build dependency calculations, Christoph Hellwig |
| Previous by Thread: | [PATCH] xfstests: fix format string warnings in locktest.c, Christoph Hellwig |
| Next by Thread: | RE: [PATCH] xfstests: fix format string warnings in aio-dio-extend-stat.c, Alex Elder |
| Indexes: | [Date] [Thread] [Top] [All Lists] |