diff --git a/cscore/src/main/native/cpp/HttpCameraImpl.cpp b/cscore/src/main/native/cpp/HttpCameraImpl.cpp index 62e8557bd30..e6543fc4115 100644 --- a/cscore/src/main/native/cpp/HttpCameraImpl.cpp +++ b/cscore/src/main/native/cpp/HttpCameraImpl.cpp @@ -521,7 +521,8 @@ bool HttpCameraImpl::SetVideoMode(const VideoMode& mode, CS_Status* status) { m_mode = mode; m_streamSettings.clear(); if (mode.width != 0 && mode.height != 0) { - m_streamSettings["resolution"] = fmt::format("{}x{}", mode.width, mode.height); + m_streamSettings["resolution"] = + fmt::format("{}x{}", mode.width, mode.height); } if (mode.fps != 0) { m_streamSettings["fps"] = fmt::format("{}", mode.fps);