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

quartz: Cast to the correct type instead to void pointer.

parent 4b59a426
...@@ -5278,7 +5278,7 @@ static HRESULT WINAPI MediaFilter_SetSyncSource(IMediaFilter *iface, IReferenceC ...@@ -5278,7 +5278,7 @@ static HRESULT WINAPI MediaFilter_SetSyncSource(IMediaFilter *iface, IReferenceC
IMediaEventSink *pEventSink; IMediaEventSink *pEventSink;
HRESULT eshr; HRESULT eshr;
eshr = IMediaFilter_QueryInterface(iface, &IID_IMediaEventSink, (LPVOID)&pEventSink); eshr = IMediaFilter_QueryInterface(iface, &IID_IMediaEventSink, (void **)&pEventSink);
if (SUCCEEDED(eshr)) if (SUCCEEDED(eshr))
{ {
IMediaEventSink_Notify(pEventSink, EC_CLOCK_CHANGED, 0, 0); IMediaEventSink_Notify(pEventSink, EC_CLOCK_CHANGED, 0, 0);
......
...@@ -128,7 +128,7 @@ static void test_basefilter(void) ...@@ -128,7 +128,7 @@ static void test_basefilter(void)
ULONG ref; ULONG ref;
HRESULT hr; HRESULT hr;
IUnknown_QueryInterface(pAviSplitter, &IID_IBaseFilter, (void *)&base); IUnknown_QueryInterface(pAviSplitter, &IID_IBaseFilter, (void **)&base);
if (base == NULL) if (base == NULL)
{ {
/* test_query_interface handles this case */ /* test_query_interface handles this case */
......
...@@ -179,7 +179,7 @@ static void test_basefilter(void) ...@@ -179,7 +179,7 @@ static void test_basefilter(void)
ULONG ref; ULONG ref;
HRESULT hr; HRESULT hr;
IUnknown_QueryInterface(pDSRender, &IID_IBaseFilter, (void *)&base); IUnknown_QueryInterface(pDSRender, &IID_IBaseFilter, (void **)&base);
if (base == NULL) if (base == NULL)
{ {
/* test_query_interface handles this case */ /* test_query_interface handles this case */
......
...@@ -233,7 +233,7 @@ static void test_legacy_filter_registration(void) ...@@ -233,7 +233,7 @@ static void test_legacy_filter_registration(void)
ok(hr == S_OK, "CoCreateInstance failed with %x\n", hr); ok(hr == S_OK, "CoCreateInstance failed with %x\n", hr);
if (FAILED(hr)) goto out; if (FAILED(hr)) goto out;
hr = IFilterMapper2_QueryInterface(pMapper2, &IID_IFilterMapper, (LPVOID)&pMapper); hr = IFilterMapper2_QueryInterface(pMapper2, &IID_IFilterMapper, (void **)&pMapper);
ok(hr == S_OK, "IFilterMapper2_QueryInterface failed with %x\n", hr); ok(hr == S_OK, "IFilterMapper2_QueryInterface failed with %x\n", hr);
if (FAILED(hr)) goto out; if (FAILED(hr)) goto out;
......
...@@ -110,7 +110,7 @@ static void test_basefilter(void) ...@@ -110,7 +110,7 @@ static void test_basefilter(void)
ULONG ref; ULONG ref;
HRESULT hr; HRESULT hr;
IUnknown_QueryInterface(pVideoRenderer, &IID_IBaseFilter, (void *)&base); IUnknown_QueryInterface(pVideoRenderer, &IID_IBaseFilter, (void **)&base);
if (base == NULL) if (base == NULL)
{ {
/* test_query_interface handles this case */ /* test_query_interface handles this case */
......
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