diff options
author | Sven Gothel <[email protected]> | 2022-05-16 05:46:40 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-05-16 05:46:40 +0200 |
commit | 35b5da1c71bfecae0203045daaa1247e61de0d40 (patch) | |
tree | a4dbb61842738106d4e7095766a19fa052b30898 /src | |
parent | 33caf2e5e5a3731628b3167014da92c4ee2d1152 (diff) |
Trial C++/Java: Validate BTAdapter::[add|remove]StatusListener() expected result
Diffstat (limited to 'src')
-rw-r--r-- | src/direct_bt/BTAdapter.cpp | 2 |
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()); } } |