Module: wine Branch: master Commit: 27f13a37a0d05dcc6a5f88ab0970bd27d39e46a1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=27f13a37a0d05dcc6a5f88ab0...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Wed Apr 6 17:43:07 2022 +0300
mf/session: Use correct format specifier for start position.
Fixup for 3f84ee1eb6637602e3e95fee20985444639b4602.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mf/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mf/session.c b/dlls/mf/session.c index 85cbcc29630..85b63f767fe 100644 --- a/dlls/mf/session.c +++ b/dlls/mf/session.c @@ -2009,7 +2009,7 @@ static HRESULT WINAPI mfsession_Start(IMFMediaSession *iface, const GUID *format struct session_op *op; HRESULT hr;
- TRACE("%p, %s, %p.\n", iface, debugstr_guid(format), debugstr_propvar(start_position)); + TRACE("%p, %s, %s.\n", iface, debugstr_guid(format), debugstr_propvar(start_position));
if (!start_position) return E_POINTER;