scrrun: Print the debug string instead of the pointer value.

Michael Stefaniuc mstefani at redhat.de
Tue Mar 24 04:02:45 CDT 2015


---
 dlls/scrrun/dictionary.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/scrrun/dictionary.c b/dlls/scrrun/dictionary.c
index cce8a37..631d0b0 100644
--- a/dlls/scrrun/dictionary.c
+++ b/dlls/scrrun/dictionary.c
@@ -671,7 +671,7 @@ static HRESULT WINAPI dictionary_Remove(IDictionary *iface, VARIANT *key)
     dictionary *This = impl_from_IDictionary(iface);
     struct keyitem_pair *pair;
 
-    TRACE("(%p)->(%p)\n", This, debugstr_variant(key));
+    TRACE("(%p)->(%s)\n", This, debugstr_variant(key));
 
     if (!(pair = get_keyitem_pair(This, key)))
         return CTL_E_ELEMENT_NOT_FOUND;
-- 
1.9.3



More information about the wine-patches mailing list