]> Nishi Git Mirror - libw3.git/commitdiff
better user-agent
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Sun, 7 Apr 2024 13:58:30 +0000 (13:58 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Sun, 7 Apr 2024 13:58:30 +0000 (13:58 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@289 d27a3e52-49c5-7645-884c-6793ebffc270

Library/Util.c

index 0d9d452d47124acae7647ac2710df1c305684d41..979eda17ba3ccc961da9b8d52df3701c6a3edb25 100644 (file)
@@ -154,7 +154,7 @@ char* __W3_Get_Platform(void) {
        RTL_OSVERSIONINFOEXW info;
        ZeroMemory(&info, sizeof(RTL_OSVERSIONINFOEXW));
        info.dwOSVersionInfoSize = sizeof(RTL_OSVERSIONINFOEXW);
-       RtlGetVersionEx(&info);
+       RtlGetVersion(&info);
        char* result = malloc(33);
        sprintf(result, "Windows %lu.%lu.%lu", info.dwMajorVersion, info.dwMinorVersion, info.dwBuildNumber);
        return result;