diff options
author | Prerepa Viswanadham <dham@google.com> | 2014-07-30 15:10:39 -0700 |
---|---|---|
committer | Prerepa Viswanadham <dham@google.com> | 2014-07-30 23:41:29 +0000 |
commit | 378de1a9e09aa2a42f6702e8882f424fcd7f0003 (patch) | |
tree | ca75a0d2c955d7175574e66da16b157df35dd1d3 /include | |
parent | d1a1b1c4df8b892aaafc9fb5d52045b41915b4d8 (diff) | |
download | hardware_libhardware-378de1a9e09aa2a42f6702e8882f424fcd7f0003.zip hardware_libhardware-378de1a9e09aa2a42f6702e8882f424fcd7f0003.tar.gz hardware_libhardware-378de1a9e09aa2a42f6702e8882f424fcd7f0003.tar.bz2 |
Incorrect data type. bt_local_le_features_t of wrong size
b/16653133
Change-Id: Icd7a3de6161669f4c54c6042bf80314e72f5f0ff
Diffstat (limited to 'include')
-rw-r--r-- | include/hardware/bluetooth.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hardware/bluetooth.h b/include/hardware/bluetooth.h index 7c17b64..cd67414 100644 --- a/include/hardware/bluetooth.h +++ b/include/hardware/bluetooth.h @@ -148,7 +148,8 @@ typedef struct uint8_t rpa_offload_supported; uint8_t max_irk_list_size; uint8_t max_adv_filter_supported; - uint8_t scan_result_storage_size; + uint8_t scan_result_storage_size_lobyte; + uint8_t scan_result_storage_size_hibyte; uint8_t activity_energy_info_supported; }bt_local_le_features_t; |