From 95f880871210c6d303c5d33f466141e4cfbe0694 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Fri, 29 Oct 2021 14:39:42 -0400 Subject: [PATCH] Fix sort func. refs #17763 Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- anno2vcf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anno2vcf.go b/anno2vcf.go index 000ad98096..a1eb0ae2a6 100644 --- a/anno2vcf.go +++ b/anno2vcf.go @@ -97,7 +97,7 @@ func (cmd *anno2vcf) RunCommand(prog string, args []string, stdin io.Reader, std return 1 } d.Close() - sort.Slice(fis, func(i, j int) { return fis[i].Name() < fis[j].Name() }) + sort.Slice(fis, func(i, j int) bool { return fis[i].Name() < fis[j].Name() }) type call struct { tile int -- 2.30.2