msxml3/tests: Remove superfluous cast to self.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2021-08-26 09:45:24 +02:00 committed by Alexandre Julliard
parent 65e6165ce8
commit 2433a96202
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ static IDispatch* create_dispevent(void)
event->IDispatch_iface.lpVtbl = &dispeventVtbl;
event->ref = 1;
return (IDispatch*)&event->IDispatch_iface;
return &event->IDispatch_iface;
}
/* IStream */