Dmitry Timoshkov : dplayx: Make some data const.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Dec 14 14:23:51 CST 2006


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

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Thu Dec 14 22:47:05 2006 +0800

dplayx: Make some data const.

---

 dlls/dplayx/dplayx_global.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dplayx/dplayx_global.c b/dlls/dplayx/dplayx_global.c
index 9963361..99e0d8e 100644
--- a/dlls/dplayx/dplayx_global.c
+++ b/dlls/dplayx/dplayx_global.c
@@ -51,10 +51,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(dplay);
 /* FIXME: Need to do all that fun other dll referencing type of stuff */
 
 /* Static data for all processes */
-static LPCSTR lpszDplayxSemaName = "WINE_DPLAYX_SM";
+static const char lpszDplayxSemaName[] = "WINE_DPLAYX_SM";
 static HANDLE hDplayxSema;
 
-static LPCSTR lpszDplayxFileMapping = "WINE_DPLAYX_FM";
+static const char lpszDplayxFileMapping[] = "WINE_DPLAYX_FM";
 static HANDLE hDplayxSharedMem;
 
 static LPVOID lpSharedStaticData = NULL;




More information about the wine-cvs mailing list