aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2021-10-02 15:52:21 +0200
committerSven Gothel <[email protected]>2021-10-02 15:52:21 +0200
commit9c92e3a136c570345417c2f1a7ed2d18a9adfb7a (patch)
treedf3ab8cff55a97324458ac7ee977fd85739b294c
parent81d05e0107baeaa5a5af9d584109c24fc489151a (diff)
BTGattDesc::to[Short]String(): Drop space.
-rw-r--r--src/direct_bt/BTGattDesc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/direct_bt/BTGattDesc.cpp b/src/direct_bt/BTGattDesc.cpp
index 36eb1f1f..c8597890 100644
--- a/src/direct_bt/BTGattDesc.cpp
+++ b/src/direct_bt/BTGattDesc.cpp
@@ -80,9 +80,9 @@ bool BTGattDesc::writeValue() {
}
std::string BTGattDesc::toString() const noexcept {
- return "[type 0x"+type->toString()+", handle "+to_hexstring(handle)+", value["+value.toString()+"] ]";
+ return "[type 0x"+type->toString()+", handle "+to_hexstring(handle)+", value["+value.toString()+"]]";
}
std::string BTGattDesc::toShortString() const noexcept {
- return "[handle "+to_hexstring(handle)+", value["+value.toString()+"] ]";
+ return "[handle "+to_hexstring(handle)+", value["+value.toString()+"]]";
}