# HG changeset patch # User reimar # Date 1351614647 0 # Node ID 33e13b4ddfcbc10940f25f8ca717b01daff2959b # Parent 36d09dcaf732b48cf6e1f93b406fbecdf593b900 Fix copy-paste error found by Coverity (yes, it really has a COPY_PASTE_ERROR error-type for that...). diff -r 36d09dcaf732 -r 33e13b4ddfcb libvo/vo_xvmc.c --- a/libvo/vo_xvmc.c Tue Oct 30 15:40:41 2012 +0000 +++ b/libvo/vo_xvmc.c Tue Oct 30 16:30:47 2012 +0000 @@ -267,7 +267,7 @@ mp_msg(MSGT_VO,msgl," byte_order = "); if(xifv->byte_order == LSBFirst) mp_msg(MSGT_VO,msgl,"LSB First\n"); - else if(xifv->type == MSBFirst) mp_msg(MSGT_VO,msgl,"MSB First\n"); + else if(xifv->byte_order == MSBFirst) mp_msg(MSGT_VO,msgl,"MSB First\n"); else mp_msg(MSGT_VO,msgl,"Unknown\n");//yes Linux support other types too mp_msg(MSGT_VO,msgl," guid = ");