aboutsummaryrefslogtreecommitdiffstats
path: root/src/direct_bt/GATTNumbers.cpp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2021-02-06 23:34:03 +0100
committerSven Gothel <[email protected]>2021-02-06 23:34:03 +0100
commit9dfcad8e80c80fcd8849ad2d399315848f208880 (patch)
treef15f3f46830d609572fc11fb5bb5dc247704b07c /src/direct_bt/GATTNumbers.cpp
parent87404c88aaacb664438d2215c82624b1a8192b0f (diff)
Adapt to jau::bytesHexString(..)/<type>HexString(..): Removed leading0X argument: Unifying output.
Diffstat (limited to 'src/direct_bt/GATTNumbers.cpp')
-rw-r--r--src/direct_bt/GATTNumbers.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/direct_bt/GATTNumbers.cpp b/src/direct_bt/GATTNumbers.cpp
index 7816c2eb..9b59df6b 100644
--- a/src/direct_bt/GATTNumbers.cpp
+++ b/src/direct_bt/GATTNumbers.cpp
@@ -398,10 +398,10 @@ std::shared_ptr<GattPnP_ID> GattPnP_ID::get(const TROOctets &source) noexcept {
}
std::string GattPnP_ID::toString() const noexcept {
- return "vendor_id[source "+jau::uint8HexString(vendor_id_source, true)+
- ", id "+jau::uint16HexString(vendor_id, true)+
- "], product_id "+jau::uint16HexString(product_id, true)+
- ", product_version "+jau::uint16HexString(product_version, true);
+ return "vendor_id[source "+jau::uint8HexString(vendor_id_source)+
+ ", id "+jau::uint16HexString(vendor_id)+
+ "], product_id "+jau::uint16HexString(product_id)+
+ ", product_version "+jau::uint16HexString(product_version);
}
std::string GattDeviceInformationSvc::toString() const noexcept {