Module: tools Branch: master Commit: 4760c0ef27834ddf4ddd6d5cdc4a9964dec51087 URL: https://source.winehq.org/git/tools.git/?a=commit;h=4760c0ef27834ddf4ddd6d5c...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Nov 26 18:13:00 2018 +0100
testbot: Fix a copy/paste error in GetTaskMissionDescription().
The condition was obviously redundant but at least it did not cause a bug.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/Missions.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/lib/WineTestBot/Missions.pm b/testbot/lib/WineTestBot/Missions.pm index 9761a5a..869f699 100644 --- a/testbot/lib/WineTestBot/Missions.pm +++ b/testbot/lib/WineTestBot/Missions.pm @@ -108,7 +108,7 @@ sub GetTaskMissionDescription($)
my $Builds = $TaskMission->{Builds}; my $Description = - ($Builds->{exe64} and ($Builds->{exe32} or $Builds->{exe32})) ? "32 & 64 bit executable" : + ($Builds->{exe32} and $Builds->{exe64}) ? "32 & 64 bit executable" : $Builds->{exe32} ? "32 bit executable" : $Builds->{exe64} ? "64 bit executable" : ($Builds->{wow64} and ($Builds->{win32} or $Builds->{wow32})) ? "32 & 64 bit" :