ole32: Make some data const

Dmitry Timoshkov dmitry at codeweavers.com
Tue Nov 28 04:39:10 CST 2006


Hello,

Changelog:
    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;
 
-- 
1.4.2






More information about the wine-patches mailing list