wpc: Fix TRACE for WindowsParentalControls_CreateInstance.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2016-10-16 19:45:42 +03:00 committed by Alexandre Julliard
parent d9c9d9b10f
commit 8a3f1a0754
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static HRESULT WINAPI WindowsParentalControls_CreateInstance(IClassFactory *ifac
{
static IWindowsParentalControls wpc = { &WindowsParentalControlsVtbl };
TRACE("(%s %p %p)\n", debugstr_guid(riid), outer, ppv);
TRACE("(%p %s %p)\n", outer, debugstr_guid(riid), ppv);
return IWindowsParentalControls_QueryInterface(&wpc, riid, ppv);
}