Skip to content

Commit

Permalink
Update InputCEC.cpp
Browse files Browse the repository at this point in the history
Fix two typos.
  • Loading branch information
satmandu authored May 16, 2024
1 parent f26a761 commit 182b30a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/input/InputCEC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ bool InputCECWorker::openAdapter()
m_adapterPort = devices[0].strComName;
if (m_adapter->Open(m_adapterPort.toStdString().c_str()))
{
qInfo() << "Device " << devices[0].strComName << "was successfully openned";
qInfo() << "Device " << devices[0].strComName << "was successfully opened";
ret = true;
}
else
Expand Down Expand Up @@ -414,7 +414,7 @@ void InputCECWorker::CecAlert(void *cbParam, const libcec_alert type, const libc

if (reopen)
{
qDebug() << "libCEC : Reopenning adapter";
qDebug() << "libCEC : Reopening adapter";
auto cec = static_cast<InputCECWorker*>(cbParam);
if (cec)
cec->closeAdapter();
Expand Down

0 comments on commit 182b30a

Please sign in to comment.