summaryrefslogtreecommitdiffstats
path: root/bluez-client.c
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2017-05-14 17:16:30 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2017-05-14 17:17:07 -0700
commiteee2eb78bd8c1f9d3daeef1ef496dbb6484b5124 (patch)
tree417c3c04a0d3fa2b0d9c82def5c7b9c3251a36ee /bluez-client.c
parentab372c543ed9783336fe2bc25a83f47991d1a055 (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 'bluez-client.c')
-rw-r--r--bluez-client.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/bluez-client.c b/bluez-client.c
index ddaedbb..3b97fef 100644
--- a/bluez-client.c
+++ b/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;
}
}
}