Dmitry Timoshkov : ole32: Make some data const.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Nov 28 06:05:41 CST 2006


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

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Tue Nov 28 18:39:10 2006 +0800

ole32: Make some data const.

---

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

diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c
index 59093ff..f29de4d 100644
--- a/dlls/ole32/compobj.c
+++ b/dlls/ole32/compobj.c
@@ -1001,7 +1001,7 @@ HRESULT WINE_StringFromCLSID(
 	const CLSID *id,	/* [in] GUID to be converted */
 	LPSTR idstr		/* [out] pointer to buffer to contain converted guid */
 ) {
-  static const char *hex = "0123456789ABCDEF";
+  static const char hex[] = "0123456789ABCDEF";
   char *s;
   int	i;
 




More information about the wine-cvs mailing list