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

Alexandre Julliard julliard at winehq.org
Tue Sep 22 15:46:40 CDT 2020


Module: wine
Branch: master
Commit: b4c890e37c5d51ee60dd738e5e2ca6dd2e557626
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b4c890e37c5d51ee60dd738e5e2ca6dd2e557626

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Mon Sep 21 22:52:31 2020 +0200

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

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard 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 987f780c6c..36a863c7c6 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;
 }
 




More information about the wine-cvs mailing list