msi: Adjust the signedness of three variables.

This commit is contained in:
Gerald Pfeifer 2008-02-17 13:23:38 +01:00 committed by Alexandre Julliard
parent 4868cde91d
commit 6bf0f0e1f6
1 changed files with 3 additions and 3 deletions

View File

@ -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);