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

Alexandre Julliard julliard at wine.codeweavers.com
Tue Mar 6 06:03:56 CST 2007


Module: wine
Branch: master
Commit: 59bc3545fbaa989045e2d90afc2599f91a81f6da
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=59bc3545fbaa989045e2d90afc2599f91a81f6da

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Mon Mar  5 19:03:04 2007 +0000

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

---

 dlls/msvfw32/drawdib.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvfw32/drawdib.c b/dlls/msvfw32/drawdib.c
index 134c325..734f0e2 100644
--- a/dlls/msvfw32/drawdib.c
+++ b/dlls/msvfw32/drawdib.c
@@ -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;




More information about the wine-cvs mailing list