MSI: remove const declaration from non-const function

Mike McCormack mike at codeweavers.com
Tue Feb 15 21:11:20 CST 2005


ChangeLog:
* remove const declaration from non-const function
-------------- next part --------------
Index: dlls/msi/package.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/package.c,v
retrieving revision 1.35
diff -u -p -r1.35 package.c
--- dlls/msi/package.c	2 Feb 2005 09:55:51 -0000	1.35
+++ dlls/msi/package.c	16 Feb 2005 03:11:32 -0000
@@ -60,7 +60,7 @@ void MSI_FreePackage( MSIOBJECTHDR *arg)
     msiobj_release( &package->db->hdr );
 }
 
-static const UINT clone_properties(MSIDATABASE *db)
+static UINT clone_properties(MSIDATABASE *db)
 {
     MSIQUERY * view = NULL;
     UINT rc;


More information about the wine-patches mailing list