Francois Gouget : testbot/LibvirtTool: PowerOff() no longer takes a NoStatus parameter.
Module: tools Branch: master Commit: 4962763b8f2996f415f880b3914d308cd19c255e URL: http://source.winehq.org/git/tools.git/?a=commit;h=4962763b8f2996f415f880b39... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Mon Oct 23 16:35:13 2017 +0200 testbot/LibvirtTool: PowerOff() no longer takes a NoStatus parameter. NoStatus=1 has been made the default so this is a no-op. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/bin/LibvirtTool.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbot/bin/LibvirtTool.pl b/testbot/bin/LibvirtTool.pl index 51f03b4..937821f 100755 --- a/testbot/bin/LibvirtTool.pl +++ b/testbot/bin/LibvirtTool.pl @@ -280,7 +280,7 @@ sub Monitor() my $IsPoweredOn = $VM->GetDomain()->IsPoweredOn(); if ($IsPoweredOn) { - my $ErrMessage = $VM->GetDomain()->PowerOff(1); + my $ErrMessage = $VM->GetDomain()->PowerOff(); if (defined $ErrMessage) { Error "$ErrMessage\n";
participants (1)
-
Alexandre Julliard