oleaut32: Changed default return value to match prefix default.

This commit is contained in:
Alistair Leslie-Hughes 2023-06-29 18:17:38 +10:00 committed by Alexandre Julliard
parent a6415ba85e
commit d8cd320db6

View file

@ -666,7 +666,7 @@ ULONG WINAPI OaBuildVersion(void)
return MAKELONG(0xffff, 50);
default:
FIXME("Version value not known yet. Please investigate it !\n");
return MAKELONG(0xffff, 40); /* for now return the same value as for w2k */
return MAKELONG(0xffff, 50); /* for now return the same value as for Win10 */
}
}