Commit 6bf0f0e1 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

msi: Adjust the signedness of three variables.

parent 4868cde9
...@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msidb); ...@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msidb);
typedef struct tabSTREAM typedef struct tabSTREAM
{ {
int str_index; UINT str_index;
LPWSTR name; LPWSTR name;
IStream *stream; IStream *stream;
} STREAM; } STREAM;
...@@ -54,7 +54,7 @@ typedef struct tagMSISTREAMSVIEW ...@@ -54,7 +54,7 @@ typedef struct tagMSISTREAMSVIEW
UINT row_size; UINT row_size;
} MSISTREAMSVIEW; } 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) if (size >= sv->max_streams)
{ {
...@@ -372,7 +372,7 @@ static UINT STREAMS_modify(struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRE ...@@ -372,7 +372,7 @@ static UINT STREAMS_modify(struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRE
static UINT STREAMS_delete(struct tagMSIVIEW *view) static UINT STREAMS_delete(struct tagMSIVIEW *view)
{ {
MSISTREAMSVIEW *sv = (MSISTREAMSVIEW *)view; MSISTREAMSVIEW *sv = (MSISTREAMSVIEW *)view;
int i; UINT i;
TRACE("(%p)\n", view); TRACE("(%p)\n", view);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment