[PATCH] dsound: Dont trace current thread ID

Andrew Eikum aeikum at codeweavers.com
Tue Sep 18 07:19:53 CDT 2018


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

On Thu, Sep 13, 2018 at 03:29:42AM +0000, Alistair Leslie-Hughes wrote:
> TID is always displayed in output now.
> 
> Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
> ---
>  dlls/dsound/buffer.c  | 2 +-
>  dlls/dsound/capture.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/dlls/dsound/buffer.c b/dlls/dsound/buffer.c
> index 1cdc388..cb7ff78 100644
> --- a/dlls/dsound/buffer.c
> +++ b/dlls/dsound/buffer.c
> @@ -415,7 +415,7 @@ static HRESULT WINAPI IDirectSoundBufferImpl_GetStatus(IDirectSoundBuffer8 *ifac
>  {
>          IDirectSoundBufferImpl *This = impl_from_IDirectSoundBuffer8(iface);
>  
> -	TRACE("(%p,%p), thread is %04x\n",This,status,GetCurrentThreadId());
> +	TRACE("(%p,%p)\n",This,status);
>  
>  	if (status == NULL) {
>  		WARN("invalid parameter: status = NULL\n");
> diff --git a/dlls/dsound/capture.c b/dlls/dsound/capture.c
> index fcc363d..c849624 100644
> --- a/dlls/dsound/capture.c
> +++ b/dlls/dsound/capture.c
> @@ -386,7 +386,7 @@ static HRESULT WINAPI IDirectSoundCaptureBufferImpl_GetStatus(IDirectSoundCaptur
>  {
>      IDirectSoundCaptureBufferImpl *This = impl_from_IDirectSoundCaptureBuffer8(iface);
>  
> -    TRACE( "(%p, %p), thread is %04x\n", This, lpdwStatus, GetCurrentThreadId() );
> +    TRACE( "(%p, %p)\n", This, lpdwStatus );
>  
>      if (This->device == NULL) {
>          WARN("invalid parameter: This->device == NULL\n");
> -- 
> 1.9.1
> 
> 
> 



More information about the wine-devel mailing list