mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
29 lines
1001 B
Diff
29 lines
1001 B
Diff
|
From e633de8aa0a8d5eaf2b47c3b4ad1c3bfc6a7f9c3 Mon Sep 17 00:00:00 2001
|
||
|
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||
|
Date: Fri, 17 May 2019 10:43:32 +1000
|
||
|
Subject: [PATCH] wineqtdecoder: Fix compile on MacOS
|
||
|
|
||
|
Regression of 0f9e4cd6600713628c92e3ceb40bd8aa38084f30
|
||
|
|
||
|
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||
|
---
|
||
|
dlls/wineqtdecoder/qtvdecoder.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/dlls/wineqtdecoder/qtvdecoder.c b/dlls/wineqtdecoder/qtvdecoder.c
|
||
|
index 4e8278b..4ad73d8 100644
|
||
|
--- a/dlls/wineqtdecoder/qtvdecoder.c
|
||
|
+++ b/dlls/wineqtdecoder/qtvdecoder.c
|
||
|
@@ -533,7 +533,7 @@ IUnknown * CALLBACK QTVDecoder_create(IUnknown * pUnkOuter, HRESULT* phr)
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
- hr = TransformFilter_Construct(sizeof(QTVDecoderImpl), &CLSID_QTVDecoder,
|
||
|
+ hr = strmbase_transform_create(sizeof(QTVDecoderImpl), &CLSID_QTVDecoder,
|
||
|
&QTVDecoder_FuncsTable, (IBaseFilter **)&This);
|
||
|
|
||
|
if (FAILED(hr))
|
||
|
--
|
||
|
1.9.1
|
||
|
|