summaryrefslogtreecommitdiffstats
path: root/src/direct_bt/GATTDescriptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/direct_bt/GATTDescriptor.cpp')
-rw-r--r--src/direct_bt/GATTDescriptor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/direct_bt/GATTDescriptor.cpp b/src/direct_bt/GATTDescriptor.cpp
index 2b7c1a37..b77b97f0 100644
--- a/src/direct_bt/GATTDescriptor.cpp
+++ b/src/direct_bt/GATTDescriptor.cpp
@@ -78,9 +78,9 @@ bool GATTDescriptor::writeValue() {
}
std::string GATTDescriptor::toString() const noexcept {
- return "[type 0x"+type->toString()+", handle "+uint16HexString(handle)+", value["+value.toString()+"]]";
+ return "[type 0x"+type->toString()+", handle "+uint16HexString(handle)+", value["+value.toString()+"] ]";
}
std::string GATTDescriptor::toShortString() const noexcept {
- return "[handle "+uint16HexString(handle)+", value["+value.toString()+"]]";
+ return "[handle "+uint16HexString(handle)+", value["+value.toString()+"] ]";
}