msi: Fix compiler warnings with flag -Wcast-qual.

This commit is contained in:
Mikhail Maroukhine 2010-03-27 20:48:20 +06:00 committed by Alexandre Julliard
parent 491a06d987
commit 86f76d2b48
1 changed files with 1 additions and 1 deletions

View File

@ -4336,7 +4336,7 @@ static UINT ACTION_PublishFeatures(MSIPACKAGE *package)
{
size += sizeof(WCHAR);
RegSetValueExW(hkey,feature->Feature,0,REG_SZ,
(LPBYTE)(feature->Feature_Parent ? feature->Feature_Parent : szEmpty),size);
(const BYTE*)(feature->Feature_Parent ? feature->Feature_Parent : szEmpty),size);
}
else
{