Skip to content

Commit

Permalink
fix: Typo in formatted output (AcademySoftwareFoundation#4229)
Browse files Browse the repository at this point in the history
Signed-off-by: Larry Gritz <[email protected]>
  • Loading branch information
lgritz authored Apr 15, 2024
1 parent f0c8962 commit 43a15b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libutil/paramlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 43a15b5

Please sign in to comment.