summaryrefslogtreecommitdiffstats
path: root/src/direct_bt/HCIHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/direct_bt/HCIHandler.cpp')
-rw-r--r--src/direct_bt/HCIHandler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/direct_bt/HCIHandler.cpp b/src/direct_bt/HCIHandler.cpp
index 9bdae951..2fe1bb05 100644
--- a/src/direct_bt/HCIHandler.cpp
+++ b/src/direct_bt/HCIHandler.cpp
@@ -432,15 +432,15 @@ exit:
return ev;
}
-HCIHandler::HCIHandler(const uint16_t dev_id, const BTMode btMode) noexcept
+HCIHandler::HCIHandler(const uint16_t dev_id_, const BTMode btMode_) noexcept
: env(HCIEnv::get()),
- dev_id(dev_id),
+ dev_id(dev_id_),
rbuffer(HCI_MAX_MTU),
- comm(dev_id, HCI_CHANNEL_RAW),
+ comm(dev_id_, HCI_CHANNEL_RAW),
hciEventRing(env.HCI_EVT_RING_CAPACITY), hciReaderShallStop(false),
hciReaderThreadId(0), hciReaderRunning(false),
allowClose( comm.isOpen() ),
- btMode(btMode)
+ btMode(btMode_)
{
WORDY_PRINT("HCIHandler.ctor: pid %d", HCIHandler::pidSelf);
if( !allowClose ) {