From 062bc304e68f54ed13d44c39ec055e08cfd4e883 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Sun, 14 May 2017 17:16:30 -0700 Subject: binding: bluetooth: fix typo of propertyies Fix typo of propertyies that should be properties. Bug-AGL: SPEC-578 Change-Id: I9b312666db39808d03fec33c0029858917a14b37 Signed-off-by: Matt Ranostay --- binding-bluetooth/bluez-client.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'binding-bluetooth/bluez-client.c') diff --git a/binding-bluetooth/bluez-client.c b/binding-bluetooth/bluez-client.c index ddaedbb..3b97fef 100644 --- a/binding-bluetooth/bluez-client.c +++ b/binding-bluetooth/bluez-client.c @@ -657,8 +657,8 @@ on_interface_proxy_properties_changed (GDBusObjectManagerClient *manager, if( (0 == g_strcmp0(pInterface, DEVICE_INTERFACE)) || (0 == g_strcmp0(pInterface, MEDIA_CONTROL1_INTERFACE))) { - if (bluez_RegisterCallback.device_propertyies_changed) - bluez_RegisterCallback.device_propertyies_changed(pObjecPath, + if (bluez_RegisterCallback.device_properties_changed) + bluez_RegisterCallback.device_properties_changed(pObjecPath, pInterface, changed_properties); } @@ -944,10 +944,10 @@ void BluezDeviceAPIRegister(const Bluez_RegisterCallback_t* pstRegisterCallback) pstRegisterCallback->device_removed; } - if (NULL != pstRegisterCallback->device_propertyies_changed) + if (NULL != pstRegisterCallback->device_properties_changed) { - bluez_RegisterCallback.device_propertyies_changed = - pstRegisterCallback->device_propertyies_changed; + bluez_RegisterCallback.device_properties_changed = + pstRegisterCallback->device_properties_changed; } } } -- cgit 1.2.3-korg