From 00382c88ab0c928841106391e40da645022f7f60 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Tue, 21 Oct 2025 11:06:31 +0200 Subject: [PATCH] fix linter err --- cmd/exporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/exporter.go b/cmd/exporter.go index ed9d149..25c139d 100644 --- a/cmd/exporter.go +++ b/cmd/exporter.go @@ -108,7 +108,7 @@ func runcheck(file string, alloc *Alloc) bool { // compare if !bytes.Equal(alloc.writeBlock, alloc.readBlock) { - return die(errors.New("Read not the same as written"), nil) + return die(errors.New("read not the same as written"), nil) } return true