[PATCH] directmanipulation: Print the debug string and not the pointer to it

Michael Stefaniuc mstefani at winehq.org
Mon Sep 21 15:52:31 CDT 2020


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/directmanipulation/directmanipulation.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/directmanipulation/directmanipulation.c b/dlls/directmanipulation/directmanipulation.c
index 987f780c6ca..36a863c7c69 100644
--- a/dlls/directmanipulation/directmanipulation.c
+++ b/dlls/directmanipulation/directmanipulation.c
@@ -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;
 }
 
-- 
2.26.2




More information about the wine-devel mailing list