We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6551af commit 3fad221Copy full SHA for 3fad221
tests/test_clip.cpp
@@ -337,9 +337,9 @@ main(int argc, char** argv)
337
Clip* clip = dynamic_cast<Clip*>(so.value);
338
assertNotNull(clip);
339
340
- // set media reference key to null
341
- otio::ErrorStatus* media_ref_key_error;
342
- clip->set_active_media_reference_key("", media_ref_key_error);
+ // set media reference key to empty string
+ otio::ErrorStatus media_ref_key_error;
+ clip->set_active_media_reference_key("", &media_ref_key_error);
343
344
otio::ErrorStatus bounds_error_no_mr;
345
clip->available_image_bounds(&bounds_error_no_mr);
0 commit comments