From dedf5e49ba60ad16136fa0a6f51cac2c40ab02c8 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 8 Jan 2009 13:12:46 +0100 Subject: [PATCH] dsound: Avoid a pointer cast in a trace. --- dlls/dsound/duplex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dsound/duplex.c b/dlls/dsound/duplex.c index 32002a8992c..1fe6bbc67da 100644 --- a/dlls/dsound/duplex.c +++ b/dlls/dsound/duplex.c @@ -676,9 +676,9 @@ IDirectSoundFullDuplexImpl_Initialize( IDirectSoundFullDuplexImpl *This = (IDirectSoundFullDuplexImpl *)iface; IDirectSoundBufferImpl * dsb; - TRACE("(%p,%s,%s,%p,%p,%x,%x,%p,%p)\n", This, + TRACE("(%p,%s,%s,%p,%p,%p,%x,%p,%p)\n", This, debugstr_guid(pCaptureGuid), debugstr_guid(pRendererGuid), - lpDscBufferDesc, lpDsBufferDesc, (DWORD)hWnd, dwLevel, + lpDscBufferDesc, lpDsBufferDesc, hWnd, dwLevel, lplpDirectSoundCaptureBuffer8, lplpDirectSoundBuffer8); if (This->renderer_device != NULL || This->capture_device != NULL) {