Commit 3c6a4fe5 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

mscoree: Constify a character string.

parent 37d1753a
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment