From 4ebb2d60c96ea1aca0b898d919c1ba7957a86562 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 4 Aug 2011 12:27:21 -0700 Subject: [PATCH] Remove unnecessary traces --- primary.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/primary.c b/primary.c index d7457ef..20af266 100644 --- a/primary.c +++ b/primary.c @@ -1687,9 +1687,8 @@ static HRESULT WINAPI DS8PrimaryProp_Get(IKsPropertySet *iface, { DS8Primary *This = impl_from_IKsPropertySet(iface); HRESULT res = E_PROP_ID_UNSUPPORTED; - - TRACE("(%p)->(%s, %"LONGFMT"u, %p, %"LONGFMT"u, %p, %"LONGFMT"u, %p)\n", iface, debugstr_guid(guidPropSet), - dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData, pcbReturned); + (void)pInstanceData; + (void)cbInstanceData; if(IsEqualIID(guidPropSet, &DSPROPSETID_EAX20_ListenerProperties)) { @@ -1852,9 +1851,8 @@ static HRESULT WINAPI DS8PrimaryProp_Set(IKsPropertySet *iface, { DS8Primary *This = impl_from_IKsPropertySet(iface); HRESULT res = E_PROP_ID_UNSUPPORTED; - - TRACE("(%p)->(%s, %"LONGFMT"u, %p, %"LONGFMT"u, %p, %"LONGFMT"u)\n", iface, debugstr_guid(guidPropSet), - dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData); + (void)pInstanceData; + (void)cbInstanceData; if(IsEqualIID(guidPropSet, &DSPROPSETID_EAX20_ListenerProperties)) { @@ -2133,8 +2131,6 @@ static HRESULT WINAPI DS8PrimaryProp_QuerySupport(IKsPropertySet *iface, DS8Primary *This = impl_from_IKsPropertySet(iface); HRESULT res = E_PROP_ID_UNSUPPORTED; - TRACE("(%p)->(%s, %"LONGFMT"u, %p)\n", iface, debugstr_guid(guidPropSet), dwPropID, pTypeSupport); - if(IsEqualIID(guidPropSet, &DSPROPSETID_EAX20_ListenerProperties)) { EnterCriticalSection(&This->crst); -- 2.11.4.GIT