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

Commit 96957816 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Polish tBTM_SEC_DEV_REC::ToString am: 8dddc875

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1642948

Change-Id: Ie35d5e06db97edcd45d0053c8229632fc4014840
parents 0e2dc6d7 8dddc875
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -424,10 +424,10 @@ struct tBTM_SEC_DEV_REC {

  std::string ToString() const {
    return base::StringPrintf(
        "%s %6s name:\"%s\" supports_SC:%s cod:%s remote_info%s",
        "%s %6s SecureConn:%s cod:%s remote_info:%s sm4:0x%02x name:\"%s\"",
        PRIVATE_ADDRESS(bd_addr), DeviceTypeText(device_type).c_str(),
        sec_bd_name, logbool(remote_supports_secure_connections).c_str(),
        logbool(remote_supports_secure_connections).c_str(),
        class_of_device_text(dev_class).c_str(),
        remote_version_info.ToString().c_str());
        remote_version_info.ToString().c_str(), sm4, sec_bd_name);
  }
};