aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/direct_bt/HCIHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/direct_bt/HCIHandler.cpp b/src/direct_bt/HCIHandler.cpp
index 1d4c1a64..a37fd13b 100644
--- a/src/direct_bt/HCIHandler.cpp
+++ b/src/direct_bt/HCIHandler.cpp
@@ -322,7 +322,7 @@ HCIHandler::HCIHandler(const BTMode btMode, const uint16_t dev_id, const int rep
std::thread hciReaderThread = std::thread(&HCIHandler::hciReaderThreadImpl, this);
hciReaderThreadId = hciReaderThread.native_handle();
// Avoid 'terminate called without an active exception'
- // as l2capReaderThread may end due to I/O errors.
+ // as hciReaderThreadImpl may end due to I/O errors.
hciReaderThread.detach();
while( false == hciReaderRunning ) {