shell32: Remove unused return variables (coccinelle).

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-03-12 21:19:17 +01:00 committed by Alexandre Julliard
parent 12eeed3816
commit c7e6fafa4c
1 changed files with 2 additions and 4 deletions

View File

@ -923,13 +923,12 @@ static HRESULT WINAPI IAutoComplete2_fnEnable(
BOOL fEnable)
{
IAutoCompleteImpl *This = impl_from_IAutoComplete2(iface);
HRESULT hr = S_OK;
TRACE("(%p)->(%s)\n", This, (fEnable)?"true":"false");
This->enabled = fEnable;
return hr;
return S_OK;
}
/******************************************************************************
@ -1063,13 +1062,12 @@ static HRESULT WINAPI IAutoComplete2_fnGetOptions(
DWORD *pdwFlag)
{
IAutoCompleteImpl *This = impl_from_IAutoComplete2(iface);
HRESULT hr = S_OK;
TRACE("(%p) -> (%p)\n", This, pdwFlag);
*pdwFlag = This->options;
return hr;
return S_OK;
}
/**************************************************************************