diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-05-14 17:16:30 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-05-14 17:17:07 -0700 |
commit | 062bc304e68f54ed13d44c39ec055e08cfd4e883 (patch) | |
tree | f5ec1e52ceb5e15971c2767ce31dc6dc5a18b968 /binding-bluetooth/bluez-client.c | |
parent | fa4479274ac0b6b5ce0652c7f758041c52a509aa (diff) |
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 <matt.ranostay@konsulko.com>
Diffstat (limited to 'binding-bluetooth/bluez-client.c')
-rw-r--r-- | binding-bluetooth/bluez-client.c | 10 |
1 files changed, 5 insertions, 5 deletions
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; } } } |