From fc41da350a1b814d5620dabe9c0c2456c8fdd412 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 a55a6a2a5..893bba587 100644 --- a/lib/base/utility.cpp +++ b/lib/base/utility.cpp @@ -1749,7 +1749,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 */