public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kvm tools: Plug warning in virtio_p9_wstat()
@ 2011-07-10 12:01 Konstantin Khlebnikov
  2011-07-10 12:18 ` Pekka Enberg
  0 siblings, 1 reply; 3+ messages in thread
From: Konstantin Khlebnikov @ 2011-07-10 12:01 UTC (permalink / raw)
  To: kvm

glibc declare ftruncate() with attribute warn_unused_result, so result must be "checked", otherwise we get:

virtio/9p.c:487:6: error: variable ‘res’ set but not used [-Werror=unused-but-set-variable]
or
virtio/9p.c:496:12: error: ignoring return value of ‘ftruncate’, declared with attribute warn_unused_result [-Werror=unused-result]

Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
---
 tools/kvm/virtio/9p.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/tools/kvm/virtio/9p.c b/tools/kvm/virtio/9p.c
index d927688..4586f66 100644
--- a/tools/kvm/virtio/9p.c
+++ b/tools/kvm/virtio/9p.c
@@ -495,6 +495,7 @@ static void virtio_p9_wstat(struct p9_dev *p9dev,
 
 	if (wstat.length != -1UL)
 		res = ftruncate(fid->fd, wstat.length);
+	(void)res; /* To plug the warning. FIXME what if ftruncate fails? */
 
 	if (wstat.mode != -1U)
 		chmod(fid->abs_path, wstat.mode & 0xFFFF);


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

end of thread, other threads:[~2011-07-10 17:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-10 12:01 [PATCH] kvm tools: Plug warning in virtio_p9_wstat() Konstantin Khlebnikov
2011-07-10 12:18 ` Pekka Enberg
2011-07-10 17:23   ` Aneesh Kumar K.V

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox