scrrun: Constify a character string.

This commit is contained in:
Frédéric Delanoy 2013-12-17 22:17:41 +01:00 committed by Alexandre Julliard
parent 44c1ba9f9e
commit a0a1a5fca5
1 changed files with 1 additions and 1 deletions

View File

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