Module: wine Branch: master Commit: 3c6a4fe554f1b7f70b55cf97718a03f52710644f URL: http://source.winehq.org/git/wine.git/?a=commit;h=3c6a4fe554f1b7f70b55cf9771...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Mon Dec 16 23:26:11 2013 +0100
mscoree: Constify a character string.
---
dlls/mscoree/metahost.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mscoree/metahost.c b/dlls/mscoree/metahost.c index 3a7e109..6386122 100644 --- a/dlls/mscoree/metahost.c +++ b/dlls/mscoree/metahost.c @@ -1260,7 +1260,7 @@ HRESULT get_file_from_strongname(WCHAR* stringnameW, WCHAR* assemblies_path, int HRESULT hr=S_OK; IAssemblyCache *asmcache; ASSEMBLY_INFO info; - static WCHAR fusiondll[] = {'f','u','s','i','o','n',0}; + static const WCHAR fusiondll[] = {'f','u','s','i','o','n',0}; HMODULE hfusion=NULL; static HRESULT (WINAPI *pCreateAssemblyCache)(IAssemblyCache**,DWORD);