msi: Fix a copy and paste error.
This commit is contained in:
parent
46df2fa9da
commit
cf3f442754
|
@ -1666,7 +1666,7 @@ HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR compone
|
|||
HRESULT WINAPI mrp_SetComponentState( IWineMsiRemotePackage *iface, BSTR component, INSTALLSTATE state )
|
||||
{
|
||||
msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
|
||||
UINT r = MsiSetFeatureStateW(This->package, (LPWSTR)component, state);
|
||||
UINT r = MsiSetComponentStateW(This->package, (LPWSTR)component, state);
|
||||
return HRESULT_FROM_WIN32(r);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue