Commit dedf5e49 authored by Alexandre Julliard's avatar Alexandre Julliard

dsound: Avoid a pointer cast in a trace.

parent a494b13a
...@@ -676,9 +676,9 @@ IDirectSoundFullDuplexImpl_Initialize( ...@@ -676,9 +676,9 @@ IDirectSoundFullDuplexImpl_Initialize(
IDirectSoundFullDuplexImpl *This = (IDirectSoundFullDuplexImpl *)iface; IDirectSoundFullDuplexImpl *This = (IDirectSoundFullDuplexImpl *)iface;
IDirectSoundBufferImpl * dsb; 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), debugstr_guid(pCaptureGuid), debugstr_guid(pRendererGuid),
lpDscBufferDesc, lpDsBufferDesc, (DWORD)hWnd, dwLevel, lpDscBufferDesc, lpDsBufferDesc, hWnd, dwLevel,
lplpDirectSoundCaptureBuffer8, lplpDirectSoundBuffer8); lplpDirectSoundCaptureBuffer8, lplpDirectSoundBuffer8);
if (This->renderer_device != NULL || This->capture_device != NULL) { if (This->renderer_device != NULL || This->capture_device != NULL) {
......
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