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
f042209c
Commit
f042209c
authored
Apr 11, 2005
by
Ferenc Wagner
Committed by
Alexandre Julliard
Apr 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence some signedness warnings.
parent
0a63a72f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gui.c
programs/winetest/gui.c
+1
-2
main.c
programs/winetest/main.c
+2
-1
No files found.
programs/winetest/gui.c
View file @
f042209c
...
@@ -515,8 +515,7 @@ report (enum report_type t, ...)
...
@@ -515,8 +515,7 @@ report (enum report_type t, ...)
va_start
(
ap
,
t
);
va_start
(
ap
,
t
);
if
(
t
<
sizeof
text_funcs
/
sizeof
text_funcs
[
0
]
&&
if
(
t
<
sizeof
text_funcs
/
sizeof
text_funcs
[
0
]
&&
t
<
sizeof
GUI_funcs
/
sizeof
GUI_funcs
[
0
]
&&
t
<
sizeof
GUI_funcs
/
sizeof
GUI_funcs
[
0
])
ret
=
funcs
[
t
](
ap
);
t
>=
0
)
ret
=
funcs
[
t
](
ap
);
else
report
(
R_WARNING
,
"unimplemented report type: %d"
,
t
);
else
report
(
R_WARNING
,
"unimplemented report type: %d"
,
t
);
va_end
(
ap
);
va_end
(
ap
);
return
ret
;
return
ret
;
...
...
programs/winetest/main.c
View file @
f042209c
...
@@ -192,7 +192,8 @@ const char* get_file_rev(const char* file)
...
@@ -192,7 +192,8 @@ const char* get_file_rev(const char* file)
void
extract_rev_infos
()
void
extract_rev_infos
()
{
{
char
revinfo
[
256
],
*
p
;
char
revinfo
[
256
],
*
p
;
int
size
=
0
,
i
,
len
;
int
size
=
0
,
i
;
unsigned
int
len
;
HMODULE
module
=
GetModuleHandle
(
NULL
);
HMODULE
module
=
GetModuleHandle
(
NULL
);
for
(
i
=
0
;
TRUE
;
i
++
)
{
for
(
i
=
0
;
TRUE
;
i
++
)
{
...
...
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