Commit 59bc3545 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msvfw32: Replace const pointer parameter with correct pointer to const.

parent 80103832
......@@ -53,7 +53,7 @@ typedef struct tagWINE_HDD {
struct tagWINE_HDD* next;
} WINE_HDD;
static int num_colours(const LPBITMAPINFOHEADER lpbi)
static int num_colours(const BITMAPINFOHEADER *lpbi)
{
if(lpbi->biClrUsed)
return lpbi->biClrUsed;
......
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