OSDN Git Service

attrib: Minor code optimization
authorClaudio Takahasi <claudio.takahasi@openbossa.org>
Mon, 24 Mar 2014 19:25:43 +0000 (16:25 -0300)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 24 Mar 2014 20:19:01 +0000 (22:19 +0200)
attrib/gatt.c

index f57d0bb..7363b4b 100644 (file)
@@ -408,10 +408,8 @@ static struct gatt_included *included_from_buf(const uint8_t *buf, gsize len)
 
        if (len == 8) {
                bt_uuid_t uuid128;
-               bt_uuid_t uuid16;
 
-               bt_uuid16_create(&uuid16, get_le16(&buf[6]));
-               bt_uuid_to_uuid128(&uuid16, &uuid128);
+               get_uuid128(BT_UUID16, &buf[6], &uuid128);
                bt_uuid_to_string(&uuid128, incl->uuid, sizeof(incl->uuid));
        }