aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-05-16 05:46:40 +0200
committerSven Gothel <[email protected]>2022-05-16 05:46:40 +0200
commit35b5da1c71bfecae0203045daaa1247e61de0d40 (patch)
treea4dbb61842738106d4e7095766a19fa052b30898 /src
parent33caf2e5e5a3731628b3167014da92c4ee2d1152 (diff)
Trial C++/Java: Validate BTAdapter::[add|remove]StatusListener() expected result
Diffstat (limited to 'src')
-rw-r--r--src/direct_bt/BTAdapter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/direct_bt/BTAdapter.cpp b/src/direct_bt/BTAdapter.cpp
index d958e458..72791787 100644
--- a/src/direct_bt/BTAdapter.cpp
+++ b/src/direct_bt/BTAdapter.cpp
@@ -584,7 +584,7 @@ void BTAdapter::printStatusListenerList() noexcept {
auto begin = statusListenerList.begin(); // lock mutex and copy_store
jau::PLAIN_PRINT(true, "- BTAdapter::StatusListener : %zu elements", (size_t)begin.size());
for(int ii=0; !begin.is_end(); ++ii, ++begin ) {
- jau::PLAIN_PRINT(true, " - %d / %zu: %s", (ii+1), (size_t)begin.size(), begin->listener->toString().c_str());
+ jau::PLAIN_PRINT(true, " - %d / %zu: %p, %s", (ii+1), (size_t)begin.size(), begin->listener.get(), begin->listener->toString().c_str());
}
}