shell32: Remove superfluous cast to self.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-09-28 21:28:06 +02:00 committed by Alexandre Julliard
parent 812eb3c41d
commit 1f313b7f1f

View file

@ -934,7 +934,7 @@ static HRESULT ShellLinkObject_Constructor(FolderItemImpl *item, IShellLinkDual2
return hr;
}
*link = (IShellLinkDual2 *)&This->IShellLinkDual2_iface;
*link = &This->IShellLinkDual2_iface;
return S_OK;
}