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

Commit 869bc6bd authored by Archie Pusaka's avatar Archie Pusaka Committed by Gerrit Code Review
Browse files

Merge "storage: fix HidVersion size on read" into main

parents f2d0d20a c6c4a6c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ bt_status_t btif_storage_load_bonded_hid_info(void) {
    dscp_info.product_id = (uint16_t)value;

    btif_config_get_int(name, "HidVersion", &value);
    dscp_info.version = (uint8_t)value;
    dscp_info.version = (uint16_t)value;

    btif_config_get_int(name, "HidCountryCode", &value);
    dscp_info.ctry_code = (uint8_t)value;