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
e5041acf
Commit
e5041acf
authored
Feb 01, 2022
by
Stefan Dösinger
Committed by
Alexandre Julliard
Feb 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Fix some signed vs unsigned msvc warnings.
Signed-off-by:
Stefan Dösinger
<
stefan@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2f7c6659
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
makedep.c
tools/makedep.c
+4
-3
No files found.
tools/makedep.c
View file @
e5041acf
...
@@ -2036,7 +2036,7 @@ static const char *get_native_unix_lib( const struct makefile *make, const char
...
@@ -2036,7 +2036,7 @@ static const char *get_native_unix_lib( const struct makefile *make, const char
static
struct
makefile
*
get_parent_makefile
(
struct
makefile
*
make
)
static
struct
makefile
*
get_parent_makefile
(
struct
makefile
*
make
)
{
{
char
*
dir
,
*
p
;
char
*
dir
,
*
p
;
int
i
;
unsigned
int
i
;
if
(
!
make
->
obj_dir
)
return
NULL
;
if
(
!
make
->
obj_dir
)
return
NULL
;
dir
=
xstrdup
(
make
->
obj_dir
);
dir
=
xstrdup
(
make
->
obj_dir
);
...
@@ -3924,7 +3924,7 @@ static void output_testlist( const struct makefile *make )
...
@@ -3924,7 +3924,7 @@ static void output_testlist( const struct makefile *make )
*/
*/
static
void
output_gitignore
(
const
char
*
dest
,
struct
strarray
files
)
static
void
output_gitignore
(
const
char
*
dest
,
struct
strarray
files
)
{
{
int
i
;
unsigned
int
i
;
output_file
=
create_temp_file
(
dest
);
output_file
=
create_temp_file
(
dest
);
...
@@ -4026,7 +4026,8 @@ static void output_top_makefile( struct makefile *make )
...
@@ -4026,7 +4026,8 @@ static void output_top_makefile( struct makefile *make )
{
{
char
buffer
[
1024
];
char
buffer
[
1024
];
FILE
*
src_file
;
FILE
*
src_file
;
int
i
,
found
=
0
;
unsigned
int
i
;
int
found
=
0
;
output_file_name
=
obj_dir_path
(
make
,
output_makefile_name
);
output_file_name
=
obj_dir_path
(
make
,
output_makefile_name
);
output_file
=
create_temp_file
(
output_file_name
);
output_file
=
create_temp_file
(
output_file_name
);
...
...
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