mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
iccvid: Remove unneeded casts.
This commit is contained in:
parent
a36e14d9c9
commit
33f10e7fb9
@ -626,7 +626,7 @@ static void decode_cinepak(cinepak_info *cvinfo, unsigned char *buf, int size,
|
||||
while((chunk_size > 0) && (y < y_bottom))
|
||||
{
|
||||
/* ---- flag bits: 0 = SKIP, 10 = V1, 11 = V4 ---- */
|
||||
flag = (unsigned long)get_long();
|
||||
flag = get_long();
|
||||
chunk_size -= 4;
|
||||
mask = 0x80000000;
|
||||
|
||||
@ -637,7 +637,7 @@ static void decode_cinepak(cinepak_info *cvinfo, unsigned char *buf, int size,
|
||||
if(mask == 1)
|
||||
{
|
||||
if(chunk_size < 0) break;
|
||||
flag = (unsigned long)get_long();
|
||||
flag = get_long();
|
||||
chunk_size -= 4;
|
||||
mask = 0x80000000;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user