Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bec7d8b8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "gatt_db: Fix uuid_to_str for UUID_32"

parents bd52a0c5 6eaf42cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -888,7 +888,7 @@ static void uuid_to_str(const tBT_UUID bt_uuid, char *str_buf)

    if (bt_uuid.len == LEN_UUID_16) {
        sprintf(str_buf, "0x%04x", bt_uuid.uu.uuid16);
    } else if (bt_uuid.len == LEN_UUID_16) {
    } else if (bt_uuid.len == LEN_UUID_32) {
        sprintf(str_buf, "0x%08x", bt_uuid.uu.uuid32);
    } else if (bt_uuid.len == LEN_UUID_128)
    {