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

This commit is contained in:
Michael Stefaniuc 2015-03-24 10:02:45 +01:00 committed by Alexandre Julliard
parent f7a21ee1d7
commit 6ab6564b9f
1 changed files with 1 additions and 1 deletions

View File

@ -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;