From b6474756426a6c0faa31fd050fc8081344f2df26 Mon Sep 17 00:00:00 2001 From: kimwalisch Date: Tue, 13 Feb 2024 18:05:23 +0100 Subject: [PATCH] Fix memory info --- src/app/stressTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/stressTest.cpp b/src/app/stressTest.cpp index 1067cff7a..4b90652d2 100644 --- a/src/app/stressTest.cpp +++ b/src/app/stressTest.cpp @@ -149,7 +149,7 @@ void stressTestInfo(const CmdOptions& opts, if (threads * avgMiB < 1024) std::cout << std::fixed << std::setprecision(2) << avgMiB << " MiB = " - << std::fixed << std::setprecision(2) << threads * avgGiB << " MiB.\n"; + << std::fixed << std::setprecision(2) << threads * avgMiB << " MiB.\n"; else std::cout << std::fixed << std::setprecision(2) << avgMiB << " MiB = " << std::fixed << std::setprecision(2) << threads * avgGiB << " GiB.\n";