From 84ee90dcb547f3ecc85df6c60a92c11b97abc761 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Wed, 18 Jun 2008 23:32:00 +0100 Subject: [PATCH] advpack: Constify some variables. --- dlls/advpack/files.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/advpack/files.c b/dlls/advpack/files.c index 5003239ed2d..5e9ce30fee2 100644 --- a/dlls/advpack/files.c +++ b/dlls/advpack/files.c @@ -996,8 +996,8 @@ HRESULT WINAPI GetVersionFromFileExW(LPCWSTR lpszFilename, LPDWORD pdwMSVer, BOOL bFileCopied = FALSE; UINT uValueLen; - static WCHAR backslash[] = {'\\',0}; - static WCHAR translation[] = { + static const WCHAR backslash[] = {'\\',0}; + static const WCHAR translation[] = { '\\','V','a','r','F','i','l','e','I','n','f','o', '\\','T','r','a','n','s','l','a','t','i','o','n',0 };