xaudio2: Fix some TRACE calls erroneously marked as stubs.

Signed-off-by: Ethan Lee <elee@codeweavers.com>
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Ethan Lee 2019-06-14 10:06:30 -04:00 committed by Alexandre Julliard
parent 5a3f66867f
commit 07d3780d68
1 changed files with 2 additions and 2 deletions

View File

@ -1811,7 +1811,7 @@ static void WINAPI IXAudio2Impl_GetPerformanceData(IXAudio2 *iface,
{
IXAudio2Impl *This = impl_from_IXAudio2(iface);
TRACE("(%p)->(%p): stub!\n", This, pPerfData);
TRACE("(%p)->(%p)\n", This, pPerfData);
FAudio_GetPerformanceData(This->faudio, (FAudioPerformanceData *)pPerfData);
}
@ -1822,7 +1822,7 @@ static void WINAPI IXAudio2Impl_SetDebugConfiguration(IXAudio2 *iface,
{
IXAudio2Impl *This = impl_from_IXAudio2(iface);
TRACE("(%p)->(%p, %p): stub!\n", This, pDebugConfiguration, pReserved);
TRACE("(%p)->(%p, %p)\n", This, pDebugConfiguration, pReserved);
FAudio_SetDebugConfiguration(This->faudio, (FAudioDebugConfiguration *)pDebugConfiguration, pReserved);
}