ole32: Make some data const.

This commit is contained in:
Dmitry Timoshkov 2006-11-28 18:39:10 +08:00 committed by Alexandre Julliard
parent e4c0748c21
commit 09fea0f83e
1 changed files with 1 additions and 1 deletions

View File

@ -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;