Francois Gouget : testbot/WineSendLog: Remove an unused variable.
Module: tools Branch: master Commit: 10177bb70783918e38f0ac10336625dd7e96891c URL: https://source.winehq.org/git/tools.git/?a=commit;h=10177bb70783918e38f0ac10... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Fri Jun 17 16:54:31 2022 +0200 testbot/WineSendLog: Remove an unused variable. The failure count has been split between $NewCount and $OldCount. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/bin/WineSendLog.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbot/bin/WineSendLog.pl b/testbot/bin/WineSendLog.pl index a2f2369b..0848bf59 100755 --- a/testbot/bin/WineSendLog.pl +++ b/testbot/bin/WineSendLog.pl @@ -179,7 +179,7 @@ sub SendLog($) # my ($JobInfo, @New, %BugDescriptions); - my ($NewCount, $FailCount, $OldCount, $BotCount, $NotRun) = (0, 0, 0, 0, 0); + my ($NewCount, $OldCount, $BotCount, $NotRun) = (0, 0, 0, 0); my $FileType = "test executable"; my $Failures = CreateFailures($Job);
participants (1)
-
Alexandre Julliard