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

This commit is contained in:
Andrew Talbot 2007-03-05 19:03:04 +00:00 committed by Alexandre Julliard
parent 80103832c8
commit 59bc3545fb

View file

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