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
6bf0f0e1
Commit
6bf0f0e1
authored
Feb 17, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Feb 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Adjust the signedness of three variables.
parent
4868cde9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
streams.c
dlls/msi/streams.c
+3
-3
No files found.
dlls/msi/streams.c
View file @
6bf0f0e1
...
...
@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msidb);
typedef
struct
tabSTREAM
{
int
str_index
;
UINT
str_index
;
LPWSTR
name
;
IStream
*
stream
;
}
STREAM
;
...
...
@@ -54,7 +54,7 @@ typedef struct tagMSISTREAMSVIEW
UINT
row_size
;
}
MSISTREAMSVIEW
;
static
BOOL
streams_set_table_size
(
MSISTREAMSVIEW
*
sv
,
int
size
)
static
BOOL
streams_set_table_size
(
MSISTREAMSVIEW
*
sv
,
UINT
size
)
{
if
(
size
>=
sv
->
max_streams
)
{
...
...
@@ -372,7 +372,7 @@ static UINT STREAMS_modify(struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRE
static
UINT
STREAMS_delete
(
struct
tagMSIVIEW
*
view
)
{
MSISTREAMSVIEW
*
sv
=
(
MSISTREAMSVIEW
*
)
view
;
int
i
;
UINT
i
;
TRACE
(
"(%p)
\n
"
,
view
);
...
...
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