summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrerepa Viswanadham <dham@google.com>2014-07-30 15:10:39 -0700
committerPrerepa Viswanadham <dham@google.com>2014-07-30 23:41:29 +0000
commit378de1a9e09aa2a42f6702e8882f424fcd7f0003 (patch)
treeca75a0d2c955d7175574e66da16b157df35dd1d3
parentd1a1b1c4df8b892aaafc9fb5d52045b41915b4d8 (diff)
downloadlibhardware-378de1a9e09aa2a42f6702e8882f424fcd7f0003.tar.gz
Incorrect data type. bt_local_le_features_t of wrong size
b/16653133 Change-Id: Icd7a3de6161669f4c54c6042bf80314e72f5f0ff
-rw-r--r--include/hardware/bluetooth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hardware/bluetooth.h b/include/hardware/bluetooth.h
index 7c17b641..cd674142 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;