From 9996dc7e9e630e0ec2b52f108113819a190bb62a Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Mon, 21 Oct 2024 22:55:48 -0700 Subject: [PATCH] Formatting --- cscore/src/main/native/cpp/HttpCameraImpl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);