Module: tools Branch: master Commit: e5c8222769b191314e529900277eb0086032b174 URL: https://gitlab.winehq.org/winehq/tools/-/commit/e5c8222769b191314e529900277e...
Author: Francois Gouget fgouget@codeweavers.com Date: Sun Oct 23 00:07:13 2022 +0200
testbot/LogUtils: Remove a redundant return in LoadLogErrors().
---
testbot/lib/WineTestBot/LogUtils.pm | 1 - 1 file changed, 1 deletion(-)
diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm index 1e0ff38c..922a25c0 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -1054,7 +1054,6 @@ sub LoadLogErrors($) else { $LogInfo->{BadLog} = "Unable to open '$LogInfo->{LogName}.errors' for reading: $!"; - return $LogInfo; }
return $LogInfo;