--- attrib/att.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/attrib/att.c b/attrib/att.c index e28be25..c408568 100644 --- a/attrib/att.c +++ b/attrib/att.c @@ -34,6 +34,7 @@ #include <glib.h> +#include "src/shared/util.h" #include "lib/uuid.h" #include "att.h" @@ -267,7 +268,7 @@ uint16_t enc_find_by_type_req(uint16_t start, uint16_t end, bt_uuid_t *uuid, pdu[0] = ATT_OP_FIND_BY_TYPE_REQ; att_put_u16(start, &pdu[1]); att_put_u16(end, &pdu[3]); - att_put_uuid16(*uuid, &pdu[5]); + put_le16(uuid->value.u16, &pdu[5]); if (vlen > 0) { memcpy(&pdu[7], value, vlen); -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html