From 91e365acb60f412d04cbcd441bf4082dcb7375bd Mon Sep 17 00:00:00 2001 From: hagen1778 Date: Tue, 21 Nov 2023 10:52:53 +0100 Subject: [PATCH] lib/storage: fix typo Signed-off-by: hagen1778 --- lib/storage/partition.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/storage/partition.go b/lib/storage/partition.go index ca91d71e3d..224ad8009e 100644 --- a/lib/storage/partition.go +++ b/lib/storage/partition.go @@ -257,7 +257,7 @@ func mustOpenPartition(smallPartsPath, bigPartsPath string, s *Storage) *partiti name := filepath.Base(smallPartsPath) if !strings.HasSuffix(bigPartsPath, name) { - logger.Panicf("FATAL: patititon name in bigPartsPath %q doesn't match smallPartsPath %q; want %q", bigPartsPath, smallPartsPath, name) + logger.Panicf("FATAL: partition name in bigPartsPath %q doesn't match smallPartsPath %q; want %q", bigPartsPath, smallPartsPath, name) } partNamesSmall, partNamesBig := mustReadPartNames(smallPartsPath, bigPartsPath)