Skip to content

Commit 461dc47

Browse files
committed
Fix result not using TotalMilliseconds on single patch
1 parent b06b45d commit 461dc47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Hi3Helper.SharpHDiffPatch/PatchSingle/PatchSingle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private void StartPatchRoutine(Stream inputStream, Stream outputStream)
8888
stopwatch.Stop();
8989

9090
TimeSpan timeTaken = stopwatch.Elapsed;
91-
Console.WriteLine($"Patch has been finished in {timeTaken.TotalSeconds} seconds ({timeTaken.Milliseconds} ms)");
91+
Console.WriteLine($"Patch has been finished in {timeTaken.TotalSeconds} seconds ({timeTaken.TotalMilliseconds} ms)");
9292
}
9393
}
9494
}

0 commit comments

Comments
 (0)