# HG changeset patch # User reimar # Date 1166120097 0 # Node ID fe48c337a269a9441228cecdc8a5b8305d75def2 # Parent fa4f5b0fd510e80472c30decac0bff23f9ce658a 10l, missing () in check for 32bit endian-conversion hack diff -r fa4f5b0fd510 -r fe48c337a269 libvo/vo_x11.c --- a/libvo/vo_x11.c Thu Dec 14 16:48:26 2006 +0000 +++ b/libvo/vo_x11.c Thu Dec 14 18:14:57 2006 +0000 @@ -556,7 +556,7 @@ out_offset = 0; // for these formats conversion is currently not support and // we can easily "emulate" them. - if (out_format & 64 && IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format)) { + if (out_format & 64 && (IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format))) { out_format &= ~64; #ifdef WORDS_BIGENDIAN out_offset = 1;