urlmon: Cast-qual warnings fix.

This commit is contained in:
Andrew Talbot 2006-11-16 21:55:05 +00:00 committed by Alexandre Julliard
parent 161a53f254
commit 60cafb5e95

View File

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