Module: wine
Branch: master
Commit: d8cd320db690d58932e847ac5ef8c1e28547f657
URL: https://gitlab.winehq.org/wine/wine/-/commit/d8cd320db690d58932e847ac5ef8c1…
Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com>
Date: Thu Jun 29 18:17:38 2023 +1000
oleaut32: Changed default return value to match prefix default.
---
dlls/oleaut32/oleaut.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/oleaut32/oleaut.c b/dlls/oleaut32/oleaut.c
index ed3fe841416..46bb9d6b2cf 100644
--- a/dlls/oleaut32/oleaut.c
+++ b/dlls/oleaut32/oleaut.c
@@ -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 */
}
}