OSDN Git Service

rssi is signed not unsigned
authorChris Manton <cmanton@google.com>
Thu, 5 Dec 2019 00:15:36 +0000 (16:15 -0800)
committerChris Manton <cmanton@google.com>
Thu, 5 Dec 2019 00:23:26 +0000 (16:23 -0800)
Bug: 143578947
Test: bluetooth_test_gd
Change-Id: Ieb8161ae3d3cb72438b362b74f07fc1187409876

gd/hci/le_report.h

index 7dc075f..96f55db 100644 (file)
@@ -50,7 +50,7 @@ class LeReport {
   const AdvertisingEventType advertising_event_type_{};
   const Address address_{};
   const AddressType address_type_{};
-  const uint8_t rssi_;
+  const int8_t rssi_;
   const std::vector<GapData> gap_data_{};
 };