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
This commit is contained in:
rfelker 2004-05-01 18:34:23 +00:00
parent 1490be013d
commit 4ebc221760
1 changed files with 2 additions and 2 deletions

View File

@ -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--)
{