Signed-off-by: Marcus Meissner marcus@jet.franken.de --- dlls/user32/tests/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index ee39b11fc12..be41078bf29 100644 --- a/dlls/user32/tests/input.c +++ b/dlls/user32/tests/input.c @@ -3186,7 +3186,7 @@ static void test_ToAscii(void) ok(character == '\r', "ToAscii for Return was %i (expected 13)\n", character);
wstr[0] = 0; - ret = ToUnicode('A', SC_A, state, wstr, sizeof(wstr), 0); + ret = ToUnicode('A', SC_A, state, wstr, ARRAY_SIZE(wstr), 0); ok(ret == 1, "ToUnicode(A) returned %i, expected 1\n", ret);
str[0] = '\0';
Patches should be sent to GitLab repository. Link https://gitlab.winehq.org/wine/wine
On Fri, Feb 24, 2023 at 06:06:28PM +0530, Biswapriyo Nath wrote:
Patches should be sent to GitLab repository. Link https://gitlab.winehq.org/wine/wine
This is really harming contributors that only want to submit the occasional patch FWIW.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2273
Ciao, Marcus