summaryrefslogtreecommitdiff
path: root/src/eir.c
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2014-03-20 11:42:37 -0300
committerJohan Hedberg <johan.hedberg@intel.com>2014-03-21 10:40:48 +0200
commitd1ee63ca3faf7c04683bc7ce37792ae71f4ead04 (patch)
tree1ed3de99ef68dbe0a60259ef9ed7f4fb22d68981 /src/eir.c
parenta646737b7efa9a255f3783f1662e4a7eb99897f1 (diff)
downloadbluez-d1ee63ca3faf7c04683bc7ce37792ae71f4ead04.tar.gz
Replace bt_get_le32() by get_le32()
Diffstat (limited to 'src/eir.c')
-rw-r--r--src/eir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eir.c b/src/eir.c
index 62e91aca4..db9175b1e 100644
--- a/src/eir.c
+++ b/src/eir.c
@@ -84,7 +84,7 @@ static void eir_parse_uuid32(struct eir_data *eir, const void *data,
service.type = SDP_UUID32;
for (i = 0; i < len / 4; i++, uuid32++) {
- service.value.uuid32 = bt_get_le32(uuid32);
+ service.value.uuid32 = get_le32(uuid32);
uuid_str = bt_uuid2string(&service);
if (!uuid_str)