From 4ebc221760434ff67ae27def5803bab47552f221 Mon Sep 17 00:00:00 2001 From: rfelker Date: Sat, 1 May 2004 18:34:23 +0000 Subject: [PATCH] more nonsense lvalue casts, at least these aren't quite as stupid git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12377 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/ebml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmpdemux/ebml.c b/libmpdemux/ebml.c index 31c1049f6a..378c077fe2 100644 --- a/libmpdemux/ebml.c +++ b/libmpdemux/ebml.c @@ -51,7 +51,7 @@ ebml_read_vlen_uint (uint8_t *buffer, int *length) j = i+1; if (length) *length = j; - if (((int)num &= (len_mask - 1)) == len_mask - 1) + if ((num &= (len_mask - 1)) == len_mask - 1) num_ffs++; while (i--) { @@ -99,7 +99,7 @@ ebml_read_length (stream_t *s, int *length) j = i+1; if (length) *length = j; - if (((int)len &= (len_mask - 1)) == len_mask - 1) + if ((len &= (len_mask - 1)) == len_mask - 1) num_ffs++; while (i--) {