Commit fbc92ec2 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ieframe/tests: Remove useless cast to self.

parent a6b57200
...@@ -4069,7 +4069,7 @@ static void test_SetAdvise(void) ...@@ -4069,7 +4069,7 @@ static void test_SetAdvise(void)
ok(!flags, "got %08x\n", aspects); ok(!flags, "got %08x\n", aspects);
ok(sink == NULL, "got %p\n", sink); ok(sink == NULL, "got %p\n", sink);
hr = IViewObject2_SetAdvise(view, DVASPECT_CONTENT, 0, (IAdviseSink *)&test_sink); hr = IViewObject2_SetAdvise(view, DVASPECT_CONTENT, 0, &test_sink);
ok(hr == S_OK, "got %08x\n", hr); ok(hr == S_OK, "got %08x\n", hr);
aspects = flags = 0xdeadbeef; aspects = flags = 0xdeadbeef;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment