quartz: Keep This/iface order in TRACEs for consistency.

Andrew Eikum aeikum at codeweavers.com
Mon Dec 5 08:42:42 CST 2016


Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>

On Mon, Dec 05, 2016 at 12:37:18AM +0900, Akihiro Sagawa wrote:
> Signed-off-by: Akihiro Sagawa <sagawa.aki at gmail.com>
> ---
>  dlls/quartz/filtergraph.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 

> diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c
> index faf6e51..97c049d 100644
> --- a/dlls/quartz/filtergraph.c
> +++ b/dlls/quartz/filtergraph.c
> @@ -766,7 +766,7 @@ static HRESULT WINAPI FilterGraph2_SetDefaultSyncSource(IFilterGraph2 *iface)
>      HRESULT hr = S_OK;
>      int i;
>  
> -    TRACE("(%p/%p)->() live sources not handled properly!\n", iface, This);
> +    TRACE("(%p/%p)->() live sources not handled properly!\n", This, iface);
>  
>      EnterCriticalSection(&This->cs);
>  
> @@ -5318,7 +5318,7 @@ static HRESULT WINAPI MediaFilter_SetSyncSource(IMediaFilter *iface, IReferenceC
>      HRESULT hr = S_OK;
>      int i;
>  
> -    TRACE("(%p/%p)->(%p)\n", iface, This, pClock);
> +    TRACE("(%p/%p)->(%p)\n", This, iface, pClock);
>  
>      EnterCriticalSection(&This->cs);
>      {
> @@ -5366,7 +5366,7 @@ static HRESULT WINAPI MediaFilter_GetSyncSource(IMediaFilter *iface, IReferenceC
>  {
>      IFilterGraphImpl *This = impl_from_IMediaFilter(iface);
>  
> -    TRACE("(%p/%p)->(%p)\n", iface, This, ppClock);
> +    TRACE("(%p/%p)->(%p)\n", This, iface, ppClock);
>  
>      if (!ppClock)
>          return E_POINTER;

> 




More information about the wine-patches mailing list