Skip to content

Commit

Permalink
Merge pull request jellyfin#636 from satmandu/patch-1
Browse files Browse the repository at this point in the history
Fix typos in InputCEC.cpp
  • Loading branch information
iwalton3 authored May 16, 2024
2 parents f26a761 + 182b30a commit ce98467
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 ce98467

Please sign in to comment.