1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

directmanipulation: Print the debug string and not the pointer to it.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-09-21 22:52:31 +02:00 committed by Alexandre Julliard
parent b16f552e19
commit b4c890e37c

View File

@ -363,14 +363,14 @@ static HRESULT WINAPI content_SetContentRect(IDirectManipulationContent *iface,
static HRESULT WINAPI content_GetViewport(IDirectManipulationContent *iface, REFIID riid, void **object)
{
struct primarycontext *This = impl_from_IDirectManipulationContent(iface);
FIXME("%p, %p, %p\n", This, debugstr_guid(riid), object);
FIXME("%p, %s, %p\n", This, debugstr_guid(riid), object);
return E_NOTIMPL;
}
static HRESULT WINAPI content_GetTag(IDirectManipulationContent *iface, REFIID riid, void **object, UINT32 *id)
{
struct primarycontext *This = impl_from_IDirectManipulationContent(iface);
FIXME("%p, %p, %p, %p\n", This, debugstr_guid(riid), object, id);
FIXME("%p, %s, %p, %p\n", This, debugstr_guid(riid), object, id);
return E_NOTIMPL;
}