changeset 35189:33e13b4ddfcb

Fix copy-paste error found by Coverity (yes, it really has a COPY_PASTE_ERROR error-type for that...).
author reimar
date Tue, 30 Oct 2012 16:30:47 +0000
parents 36d09dcaf732
children 48943c3398ff
files libvo/vo_xvmc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 = ");