File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -174,8 +174,7 @@ int main(int argc, char** argv)
174
174
{
175
175
for (const auto & line : lines)
176
176
{
177
- fprintf (f, line.c_str ());
178
- fprintf (f, " \n " );
177
+ fprintf (f, " %s\n " , line.c_str ());
179
178
}
180
179
fclose (f);
181
180
}
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ namespace toucan
158
158
const auto & children = track->children ();
159
159
for (size_t i = 0 ; i < children.size (); ++i)
160
160
{
161
- if (item = OTIO_NS::dynamic_retainer_cast<OTIO_NS::Item>(children[i]))
161
+ if (( item = OTIO_NS::dynamic_retainer_cast<OTIO_NS::Item>(children[i]) ))
162
162
{
163
163
const auto trimmedRangeInParent = item->trimmed_range_in_parent ();
164
164
if (trimmedRangeInParent.has_value () && trimmedRangeInParent.value ().contains (time))
You can’t perform that action at this time.
0 commit comments