Commit 8fee9c59 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

endian: fix typo

parent f16f9412
......@@ -114,7 +114,7 @@ static int Open(vlc_object_t *object)
for (size_t i = 0; i < sizeof (list) / sizeof (list[0]); i++) {
if (src->i_format == list[i][0]) {
if (dst->i_format != list[i][1])
if (dst->i_format == list[i][1])
goto ok;
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment