This commit is contained in:
Alexander Aleksandrovič Klimov 2026-05-21 15:54:52 +00:00 committed by GitHub
commit badff096f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 */