From 85fc3b73936c1ed1c555dc5599fffebb7faf0474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Mon, 30 Jan 2023 16:57:43 +0100 Subject: [PATCH] Utility::GetPlatformKernelVersion(): also output the build number I.e. output 6.2.9200, not just 6.2. --- lib/base/utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/utility.cpp b/lib/base/utility.cpp index a2e461e5c..ff092c86b 100644 --- a/lib/base/utility.cpp +++ b/lib/base/utility.cpp @@ -1708,7 +1708,7 @@ String Utility::GetPlatformKernelVersion() GetVersionEx(&info); std::ostringstream msgbuf; - msgbuf << info.dwMajorVersion << "." << info.dwMinorVersion; + msgbuf << info.dwMajorVersion << "." << info.dwMinorVersion << "." << info.dwBuildNumber; return msgbuf.str(); #else /* _WIN32 */