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
59a33c9c
Commit
59a33c9c
authored
Oct 16, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Sign-compare warnings fix.
parent
9e297e2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mlang.c
dlls/mlang/mlang.c
+4
-4
No files found.
dlls/mlang/mlang.c
View file @
59a33c9c
...
...
@@ -503,7 +503,7 @@ static LONG dll_count;
static
UINT
DetectJapaneseCode
(
LPCSTR
input
,
DWORD
count
)
{
UINT
code
=
0
;
int
i
=
0
;
DWORD
i
=
0
;
unsigned
char
c1
,
c2
;
while
((
code
==
0
||
code
==
51932
)
&&
i
<
count
)
...
...
@@ -615,7 +615,7 @@ static int han2zen(unsigned char *p1, unsigned char *p2)
static
UINT
ConvertJIS2SJIS
(
LPCSTR
input
,
DWORD
count
,
LPSTR
output
)
{
int
i
=
0
;
DWORD
i
=
0
;
int
j
=
0
;
unsigned
char
p2
,
p
;
int
shifted
=
FALSE
;
...
...
@@ -683,7 +683,7 @@ static inline int enter_shift(LPSTR out, int c)
static
UINT
ConvertSJIS2JIS
(
LPCSTR
input
,
DWORD
count
,
LPSTR
output
)
{
int
i
=
0
;
DWORD
i
=
0
;
int
j
=
0
;
unsigned
char
p2
,
p
;
int
shifted
=
FALSE
;
...
...
@@ -1343,7 +1343,7 @@ static const IClassFactoryVtbl MLANGCF_Vtbl =
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
{
int
i
;
unsigned
int
i
;
IClassFactoryImpl
*
factory
;
TRACE
(
"%s %s %p
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
),
ppv
);
...
...
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