From 039b749a3e13a397eb17d5d608403330082d40ca Mon Sep 17 00:00:00 2001 From: Alexander Welsing Date: Thu, 12 Jan 2023 12:41:45 +0100 Subject: [PATCH] Fixed typo incomlete -> incomplete "Previous incomlete backup contains %d files and %d chunks -> "Previous incomplete backup contains %d files and %d chunks --- src/duplicacy_entrylist.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duplicacy_entrylist.go b/src/duplicacy_entrylist.go index bc0890d..6f21a5f 100644 --- a/src/duplicacy_entrylist.go +++ b/src/duplicacy_entrylist.go @@ -550,7 +550,7 @@ func loadIncompleteSnapshot(snapshotID string, cachePath string) *EntryList { } } - LOG_INFO("INCOMPLETE_LOAD", "Previous incomlete backup contains %d files and %d chunks", + LOG_INFO("INCOMPLETE_LOAD", "Previous incomplete backup contains %d files and %d chunks", entryList.NumberOfEntries, len(entryList.PreservedChunkLengths) + len(entryList.UploadedChunkHashes)) return entryList @@ -571,4 +571,4 @@ func deleteIncompleteSnapshot(cachePath string) { } -} \ No newline at end of file +}