Mike McCormack : msi: Only log the Action, as it' s the same as ActionRequest.
Module: wine Branch: master Commit: 3fe6a5d01e64e2e0de208fb19e9b11e917309fe6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3fe6a5d01e64e2e0de208fb19e... Author: Mike McCormack <mike(a)codeweavers.com> Date: Fri Nov 10 15:39:01 2006 +0900 msi: Only log the Action, as it's the same as ActionRequest. --- dlls/msi/action.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index c518c57..47acd58 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -1792,9 +1792,8 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *pa { ComponentList *cl; - TRACE("Examining Feature %s (Installed %i, Action %i, Request %i)\n", - debugstr_w(feature->Feature), feature->Installed, feature->Action, - feature->ActionRequest); + TRACE("Examining Feature %s (Installed %i, Action %i)\n", + debugstr_w(feature->Feature), feature->Installed, feature->Action); LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) { @@ -1856,9 +1855,8 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *pa msi_component_set_state( component, INSTALLSTATE_LOCAL ); } - TRACE("Result: Component %s (Installed %i, Action %i, Request %i)\n", - debugstr_w(component->Component), component->Installed, - component->Action, component->ActionRequest); + TRACE("Result: Component %s (Installed %i, Action %i)\n", + debugstr_w(component->Component), component->Installed, component->Action); }
participants (1)
-
Alexandre Julliard