dsound: Don't trace current thread ID.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
193fc95628
commit
074de9258d
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue