Commit 60cafb5e authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

urlmon: Cast-qual warnings fix.

parent 161a53f2
...@@ -452,7 +452,7 @@ static BOOL image_bmp_filter(const BYTE const *b, DWORD size) ...@@ -452,7 +452,7 @@ static BOOL image_bmp_filter(const BYTE const *b, DWORD size)
{ {
return size >= 14 return size >= 14
&& b[0] == 0x42 && b[1] == 0x4d && 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) static BOOL video_avi_filter(const BYTE const *b, DWORD size)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment