Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
40fef0fb
Commit
40fef0fb
authored
May 13, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
86724af0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
buffer.c
dlls/mfplat/buffer.c
+1
-1
main.c
dlls/mfplat/main.c
+1
-1
No files found.
dlls/mfplat/buffer.c
View file @
40fef0fb
...
...
@@ -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
);
}
...
...
dlls/mfplat/main.c
View file @
40fef0fb
...
...
@@ -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
)
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment