mirror of
https://github.com/reactos/wine.git
synced 2025-02-17 19:39:00 +00:00
urlmon: Cast-qual warnings fix.
This commit is contained in:
parent
161a53f254
commit
60cafb5e95
@ -452,7 +452,7 @@ static BOOL image_bmp_filter(const BYTE const *b, DWORD size)
|
||||
{
|
||||
return size >= 14
|
||||
&& b[0] == 0x42 && b[1] == 0x4d
|
||||
&& *(DWORD*)(b+6) == 0;
|
||||
&& *(const DWORD *)(b+6) == 0;
|
||||
}
|
||||
|
||||
static BOOL video_avi_filter(const BYTE const *b, DWORD size)
|
||||
|
Loading…
x
Reference in New Issue
Block a user