commit a0e32af22b75afa11c6fc5676a20513a16b2036a from: Omar Polo date: Sat Jun 17 13:00:24 2023 UTC fix undefined behaviour reported by perlcritic "return" statement followed by "sort" at line 140, column 2. Behavior is undefined if called in scalar context. (Severity: 5) the fix is the same as in volker' plage(1). commit - 38afe6366964b2195ec09e9dbdf93130a189e845 commit + a0e32af22b75afa11c6fc5676a20513a16b2036a blob - 11a98ed7d57df7a42b505816e14e8f208255173e blob + d1fb393fbccab5dc7b524a02db721d2cdcc01a3b --- plass +++ plass @@ -137,7 +137,8 @@ sub passfind { no_chdir => 1, follow_fast => 1, }, ($store)); - return sort(@entries); + my @sorted_entries = sort(@entries); + return @sorted_entries; } sub got {