diff options
author | Stefan Weil <sw@weilnetz.de> | 2014-05-02 22:22:57 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-05-07 21:00:43 +0400 |
commit | f5a014d2368b7a309cafc724e36089ab9e2af8c2 (patch) | |
tree | 9e08af8bea4f615e74232a89e5e402644416d1fe /hw/9pfs | |
parent | 4798fe55c4d539ddf8c7f5befcddfa145b3c6102 (diff) | |
download | qemu-f5a014d2368b7a309cafc724e36089ab9e2af8c2.tar.gz qemu-f5a014d2368b7a309cafc724e36089ab9e2af8c2.tar.bz2 qemu-f5a014d2368b7a309cafc724e36089ab9e2af8c2.zip |
hw/9pfs: Add missing 'static' attributes
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/9pfs')
-rw-r--r-- | hw/9pfs/virtio-9p-synth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/virtio-9p-synth.c b/hw/9pfs/virtio-9p-synth.c index 840e4ebb5a..71262bccd2 100644 --- a/hw/9pfs/virtio-9p-synth.c +++ b/hw/9pfs/virtio-9p-synth.c @@ -21,7 +21,7 @@ #include <sys/stat.h> /* Root node for synth file system */ -V9fsSynthNode v9fs_synth_root = { +static V9fsSynthNode v9fs_synth_root = { .name = "/", .actual_attr = { .mode = 0555 | S_IFDIR, |