mfplat: Print the debug strings and not the pointers.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
86724af012
commit
40fef0fb71
|
@ -438,7 +438,7 @@ static HRESULT WINAPI sample_DeleteItem(IMFSample *iface, REFGUID key)
|
|||
{
|
||||
struct sample *sample = impl_from_IMFSample(iface);
|
||||
|
||||
TRACE("%p, %p.\n", iface, debugstr_attr(key));
|
||||
TRACE("%p, %s.\n", iface, debugstr_attr(key));
|
||||
|
||||
return attributes_DeleteItem(&sample->attributes, key);
|
||||
}
|
||||
|
|
|
@ -5918,7 +5918,7 @@ HRESULT WINAPI MFCreateMediaEvent(MediaEventType type, REFGUID extended_type, HR
|
|||
mfmediaevent *object;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("%s, %s, %08x, %p, %p\n", debugstr_eventid(type), debugstr_guid(extended_type), status,
|
||||
TRACE("%s, %s, %08x, %s, %p\n", debugstr_eventid(type), debugstr_guid(extended_type), status,
|
||||
debugstr_propvar(value), event);
|
||||
|
||||
object = HeapAlloc( GetProcessHeap(), 0, sizeof(*object) );
|
||||
|
|
Loading…
Reference in New Issue