From dff92b9c760b984ffb32c09ac11034f7bf05d892 Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Sun, 26 Mar 2017 03:16:49 +0200 Subject: [PATCH] hwsim: Fix the Interface.Addresses property type --- tools/hwsim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hwsim.c b/tools/hwsim.c index 837e16d6..7ca46f25 100644 --- a/tools/hwsim.c +++ b/tools/hwsim.c @@ -1542,7 +1542,7 @@ static void setup_radio_interface(struct l_dbus_interface *interface) l_dbus_interface_property(interface, "Name", 0, "s", radio_property_get_name, NULL); - l_dbus_interface_property(interface, "Addresses", 0, "s", + l_dbus_interface_property(interface, "Addresses", 0, "as", radio_property_get_addresses, NULL); l_dbus_interface_property(interface, "Channels", 0, "q", radio_property_get_channels, NULL);