qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 09/18] Dont initialize fields which aren't available


From: Michael Fritscher
Subject: [Qemu-devel] [PATCH 09/18] Dont initialize fields which aren't available on Windows.
Date: Fri, 29 Sep 2017 13:13:14 +0200

Signed-off-by: Michael Fritscher <address@hidden>
---
 hw/9pfs/9p-synth.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hw/9pfs/9p-synth.c b/hw/9pfs/9p-synth.c
index df0a8de08a..e1bf0438b8 100644
--- a/hw/9pfs/9p-synth.c
+++ b/hw/9pfs/9p-synth.c
@@ -150,8 +150,10 @@ static void synth_fill_statbuf(V9fsSynthNode *node, struct 
stat *stbuf)
     stbuf->st_gid = 0;
     stbuf->st_rdev = 0;
     stbuf->st_size = 0;
+#ifndef _WIN32
     stbuf->st_blksize = 0;
     stbuf->st_blocks = 0;
+#endif
     stbuf->st_atime = 0;
     stbuf->st_mtime = 0;
     stbuf->st_ctime = 0;
-- 
2.13.2.windows.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]