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/core | |
parent | 4798fe55c4d539ddf8c7f5befcddfa145b3c6102 (diff) | |
download | qemu-f5a014d2368b7a309cafc724e36089ab9e2af8c2.zip qemu-f5a014d2368b7a309cafc724e36089ab9e2af8c2.tar.gz qemu-f5a014d2368b7a309cafc724e36089ab9e2af8c2.tar.bz2 |
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/core')
-rw-r--r-- | hw/core/qdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/core/qdev.c b/hw/core/qdev.c index 2fd5100..936eae6 100644 --- a/hw/core/qdev.c +++ b/hw/core/qdev.c @@ -660,8 +660,8 @@ static void qdev_get_legacy_property(Object *obj, Visitor *v, void *opaque, * Legacy properties are string versions of other OOM properties. The format * of the string depends on the property type. */ -void qdev_property_add_legacy(DeviceState *dev, Property *prop, - Error **errp) +static void qdev_property_add_legacy(DeviceState *dev, Property *prop, + Error **errp) { gchar *name; |