From f307f0fe12344016b369c999c7c2198a02ef9052 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 24 Oct 2020 15:06:40 +0100 Subject: [PATCH] Fix log message when trimming found a blank block. --- Aaru.Core/Devices/Dumping/Sbc/Trim.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aaru.Core/Devices/Dumping/Sbc/Trim.cs b/Aaru.Core/Devices/Dumping/Sbc/Trim.cs index c0045ba01..5c1377271 100644 --- a/Aaru.Core/Devices/Dumping/Sbc/Trim.cs +++ b/Aaru.Core/Devices/Dumping/Sbc/Trim.cs @@ -67,7 +67,7 @@ namespace Aaru.Core.Devices.Dumping _resume.BadBlocks.Remove(badSector); UpdateStatus?.Invoke($"Found blank block {badSector}."); - _dumpLog.WriteLine("Found blank block {0} in pass {1}.", badSector); + _dumpLog.WriteLine("Found blank block {0}.", badSector); continue; }