qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] block: Use GCC_FMT_ATTR and fix a format error
@ 2010-09-23 18:37 Stefan Weil
  2010-09-23 18:53 ` [Qemu-devel] " Blue Swirl
  0 siblings, 1 reply; 11+ messages in thread
From: Stefan Weil @ 2010-09-23 18:37 UTC (permalink / raw)
  To: QEMU Developers; +Cc: Blue Swirl, Kevin Wolf

Adding the gcc format attribute detects a format bug
which is fixed here.

Cc: Blue Swirl <blauwirbel@gmail.com>
Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
 block/blkverify.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/block/blkverify.c b/block/blkverify.c
index 8083464..b39fb67 100644
--- a/block/blkverify.c
+++ b/block/blkverify.c
@@ -53,7 +53,8 @@ static AIOPool blkverify_aio_pool = {
     .cancel             = blkverify_aio_cancel,
 };
 
-static void blkverify_err(BlkverifyAIOCB *acb, const char *fmt, ...)
+static void GCC_FMT_ATTR(2, 3) blkverify_err(BlkverifyAIOCB *acb,
+                                             const char *fmt, ...)
 {
     va_list ap;
 
@@ -300,7 +301,7 @@ static void blkverify_verify_readv(BlkverifyAIOCB *acb)
     ssize_t offset = blkverify_iovec_compare(acb->qiov, &acb->raw_qiov);
     if (offset != -1) {
         blkverify_err(acb, "contents mismatch in sector %ld",
-                      acb->sector_num + (offset / BDRV_SECTOR_SIZE));
+                      (long)(acb->sector_num + (offset / BDRV_SECTOR_SIZE)));
     }
 }
 
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2010-10-14  8:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-23 18:37 [Qemu-devel] [PATCH] block: Use GCC_FMT_ATTR and fix a format error Stefan Weil
2010-09-23 18:53 ` [Qemu-devel] " Blue Swirl
2010-09-23 19:03   ` Stefan Weil
2010-09-23 19:11     ` Stefan Weil
2010-09-23 20:24       ` Blue Swirl
2010-09-23 21:23         ` Stefan Weil
2010-09-24 19:02           ` [Qemu-devel] " Stefan Weil
2010-09-25  8:01           ` [Qemu-devel] " Blue Swirl
2010-09-25 11:59             ` Stefan Weil
2010-10-13 19:06             ` Stefan Weil
2010-10-14  8:11               ` Kevin Wolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).