From b2e08100ff0661fb4b8dcaf43abef5a43df99b14 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 4 Jun 2019 19:13:30 +0300 Subject: [PATCH] Fix sad bug --- Utilities/File.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/File.cpp b/Utilities/File.cpp index 6ae18395c0..cff6d2932a 100644 --- a/Utilities/File.cpp +++ b/Utilities/File.cpp @@ -219,7 +219,7 @@ namespace fs total += buffers[i].iov_len; } - const auto buf = std::make_unique(total); + const auto buf = std::make_unique(total); u64 copied = 0;