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
f4285e68
Commit
f4285e68
authored
Jul 13, 2005
by
Stefan Huehner
Committed by
Alexandre Julliard
Jul 13, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some -Wsign-compare warnings.
parent
8831329d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
write_msft.c
tools/widl/write_msft.c
+4
-3
No files found.
tools/widl/write_msft.c
View file @
f4285e68
...
...
@@ -103,10 +103,10 @@ typedef struct _msft_typeinfo_t
msft_typelib_t
*
typelib
;
MSFT_TypeInfoBase
*
typeinfo
;
int
var_data_allocated
;
unsigned
int
var_data_allocated
;
int
*
var_data
;
int
func_data_allocated
;
unsigned
int
func_data_allocated
;
int
*
func_data
;
int
vars_allocated
;
...
...
@@ -1458,7 +1458,8 @@ static HRESULT add_func_desc(msft_typeinfo_t* typeinfo, func_t *func, int index)
static
HRESULT
add_var_desc
(
msft_typeinfo_t
*
typeinfo
,
UINT
index
,
var_t
*
var
)
{
int
offset
,
typedata_size
,
id
;
int
offset
,
id
;
unsigned
int
typedata_size
;
INT
*
typedata
;
int
var_datawidth
;
int
var_alignment
;
...
...
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