Commit bb54ed13 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Fix the sign of an index variable.

parent 1a896348
...@@ -1589,7 +1589,7 @@ static UINT ACTION_CostInitialize(MSIPACKAGE *package) ...@@ -1589,7 +1589,7 @@ static UINT ACTION_CostInitialize(MSIPACKAGE *package)
static UINT execute_script(MSIPACKAGE *package, UINT script ) static UINT execute_script(MSIPACKAGE *package, UINT script )
{ {
int i; UINT i;
UINT rc = ERROR_SUCCESS; UINT rc = ERROR_SUCCESS;
TRACE("Executing Script %i\n",script); TRACE("Executing Script %i\n",script);
......
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