Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bf00cd33
Commit
bf00cd33
authored
Mar 28, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio.drv: Remove superfluous casts of zero.
parent
8f737248
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
audio.c
dlls/winecoreaudio.drv/audio.c
+2
-2
midi.c
dlls/winecoreaudio.drv/midi.c
+1
-1
No files found.
dlls/winecoreaudio.drv/audio.c
View file @
bf00cd33
...
...
@@ -341,8 +341,8 @@ static DWORD WINAPI messageThread(LPVOID p)
{
CFMessagePortRef
port_ReceiveInMessageThread
=
(
CFMessagePortRef
)
p
;
CFRunLoopSourceRef
source
;
source
=
CFMessagePortCreateRunLoopSource
(
kCFAllocatorDefault
,
port_ReceiveInMessageThread
,
(
CFIndex
)
0
);
source
=
CFMessagePortCreateRunLoopSource
(
kCFAllocatorDefault
,
port_ReceiveInMessageThread
,
0
);
CFRunLoopAddSource
(
CFRunLoopGetCurrent
(),
source
,
kCFRunLoopDefaultMode
);
CFRunLoopRun
();
...
...
dlls/winecoreaudio.drv/midi.c
View file @
bf00cd33
...
...
@@ -928,7 +928,7 @@ static DWORD WINAPI MIDIIn_MessageThread(LPVOID p)
local
=
CFMessagePortCreateLocal
(
kCFAllocatorDefault
,
MIDIInThreadPortName
,
&
MIDIIn_MessageHandler
,
NULL
,
&
info
);
source
=
CFMessagePortCreateRunLoopSource
(
kCFAllocatorDefault
,
local
,
(
CFIndex
)
0
);
source
=
CFMessagePortCreateRunLoopSource
(
kCFAllocatorDefault
,
local
,
0
);
CFRunLoopAddSource
(
CFRunLoopGetCurrent
(),
source
,
kCFRunLoopDefaultMode
);
CFRunLoopRun
();
...
...
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