Remove an unnecessary level of indent.

This commit is contained in:
Mike McCormack 2005-09-06 10:23:34 +00:00 committed by Alexandre Julliard
parent 9c1cfe79ba
commit 1228ce2684
1 changed files with 25 additions and 27 deletions

View File

@ -865,8 +865,7 @@ void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature)
if (!component->Enabled)
continue;
else
{
if (newstate == INSTALLSTATE_LOCAL)
{
component->ActionRequest = INSTALLSTATE_LOCAL;
@ -901,7 +900,6 @@ void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature)
}
}
}
}
TRACE("Result (%i): Component %s (Installed %i, Action %i, Request %i)\n",
newstate, debugstr_w(component->Component), component->Installed,
component->Action, component->ActionRequest);