From 43a15b5aad61b51b5e82548e4cff5233b994b4d7 Mon Sep 17 00:00:00 2001 From: Larry Gritz Date: Mon, 15 Apr 2024 16:10:00 -0700 Subject: [PATCH] fix: Typo in formatted output (#4229) Signed-off-by: Larry Gritz --- src/libutil/paramlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/paramlist.cpp b/src/libutil/paramlist.cpp index 53b982ff1e..b8f535380f 100644 --- a/src/libutil/paramlist.cpp +++ b/src/libutil/paramlist.cpp @@ -310,7 +310,7 @@ ParamValue::get_string_indexed(int index) const if (element.vecsemantics == TypeDesc::RATIONAL && element.aggregate == TypeDesc::VEC2) { const int* val = (const int*)data() + 2 * index; - out = Strutil::fmt::format("{}/{}}", val[0], val[1]); + out = Strutil::fmt::format("{}/{}", val[0], val[1]); } else if (type() == TypeTimeCode) { out += tostring(TypeTimeCode, data()); } else {