From: Louis Lenders <xerox.xerox2000x(a)gmail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56259 Note: the stub now returns for the last two parameters the values that the testbots gave me (DEVICEFAMILYINFOENUM_DESKTOP and DEVICEFAMILYDEVICEFORM_UNKNOWN). The first parameter returned some value that I don't get (like 0xa00004a63066d), for now i set it to 0, as the Webview installer didn't use this anyway (null pointer). --- dlls/ntdll/tests/rtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/rtl.c b/dlls/ntdll/tests/rtl.c index a8af9a6b2ae..a6dc1a56ff7 100644 --- a/dlls/ntdll/tests/rtl.c +++ b/dlls/ntdll/tests/rtl.c @@ -3763,7 +3763,7 @@ static void test_RtlGetDeviceFamilyInfoEnum(void) if (!pRtlGetDeviceFamilyInfoEnum) { - win_skip( "RtlGetDeviceFamilyversionEnum is not present\n" ); + win_skip( "RtlGetDeviceFamilyInfoEnum is not present\n" ); return; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/4973