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
00f85d7f
Commit
00f85d7f
authored
Jan 15, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Avoid signed-unsigned integer comparisons.
parent
7805ff32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dmusic.c
dlls/dmusic/dmusic.c
+1
-1
port.c
dlls/dmusic/port.c
+2
-2
No files found.
dlls/dmusic/dmusic.c
View file @
00f85d7f
...
...
@@ -316,7 +316,7 @@ static void create_system_ports_list(IDirectMusic8Impl* object)
MIDIINCAPSW
caps_in
;
IDirectMusicSynth8
*
synth
;
HRESULT
hr
;
int
i
;
ULONG
i
;
TRACE
(
"(%p)
\n
"
,
object
);
...
...
dlls/dmusic/port.c
View file @
00f85d7f
...
...
@@ -251,7 +251,7 @@ static HRESULT WINAPI SynthPortImpl_IDirectMusicPort_DownloadInstrument(LPDIRECT
ULONG
offset
;
ULONG
nb_regions
;
ULONG
size
;
int
i
;
ULONG
i
;
TRACE
(
"(%p/%p)->(%p, %p, %p, %d)
\n
"
,
iface
,
This
,
instrument
,
downloaded_instrument
,
note_ranges
,
num_note_ranges
);
...
...
@@ -684,7 +684,7 @@ HRESULT DMUSIC_CreateSynthPortImpl(LPCGUID guid, LPVOID *object, LPUNKNOWN unkou
{
SynthPortImpl
*
obj
;
HRESULT
hr
=
E_FAIL
;
UINT
i
;
int
i
;
TRACE
(
"(%p,%p,%p,%p,%p%d)
\n
"
,
guid
,
object
,
unkouter
,
port_params
,
port_caps
,
device
);
...
...
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