mscoree: Constify a character string.

This commit is contained in:
Frédéric Delanoy 2013-12-16 23:26:11 +01:00 committed by Alexandre Julliard
parent 37d1753a5d
commit 3c6a4fe554
1 changed files with 1 additions and 1 deletions

View File

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