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

scrrun: Constify a character string.

parent 44c1ba9f
......@@ -1822,7 +1822,7 @@ static HRESULT WINAPI filesys_GetStandardStream(IFileSystem3 *iface,
static void get_versionstring(VS_FIXEDFILEINFO *info, WCHAR *ver)
{
static WCHAR fmtW[] = {'%','d','.','%','d','.','%','d','.','%','d',0};
static const WCHAR fmtW[] = {'%','d','.','%','d','.','%','d','.','%','d',0};
DWORDLONG version;
WORD a, b, c, d;
......
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