Commit 4f916835 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

quartz: Fix spelling of a BaseOututPin method implementation name.

parent 17d1126d
......@@ -765,7 +765,7 @@ static inline FileAsyncReader *impl_from_BaseOutputPin(BaseOutputPin *iface)
return CONTAINING_RECORD(iface, FileAsyncReader, pin);
}
static inline BaseOutputPin *impl_BaseOututPin_from_BasePin(BasePin *iface)
static inline BaseOutputPin *impl_BaseOutputPin_from_BasePin(BasePin *iface)
{
return CONTAINING_RECORD(iface, BaseOutputPin, pin);
}
......@@ -881,7 +881,7 @@ static const IPinVtbl FileAsyncReaderPin_Vtbl =
* doesn't need the IMemInputPin interface on the receiving pin */
static HRESULT WINAPI FileAsyncReaderPin_AttemptConnection(BasePin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
{
BaseOutputPin *This = impl_BaseOututPin_from_BasePin(iface);
BaseOutputPin *This = impl_BaseOutputPin_from_BasePin(iface);
HRESULT hr;
TRACE("(%p, %p)\n", pReceivePin, pmt);
......
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