diff --git a/cscore/src/main/native/cpp/SourceImpl.cpp b/cscore/src/main/native/cpp/SourceImpl.cpp index a109220e04c..f2cc0d8ccc0 100644 --- a/cscore/src/main/native/cpp/SourceImpl.cpp +++ b/cscore/src/main/native/cpp/SourceImpl.cpp @@ -80,7 +80,7 @@ Frame SourceImpl::GetNextFrame() { std::unique_lock lock{m_frameMutex}; auto oldTime = m_frame.GetTime(); m_frameCv.wait( - lock, [=, this] { return oldTime == 0 || m_frame.GetTime() != oldTime; }); + lock, [=, this] { return oldTime == 0 || m_frame.GetTime() != oldTime; }); return m_frame; }