-- v2: dbghelp/tests: Fix the case of a comment. winewayland.drv: Fix the spelling of a comment.
From: Francois Gouget fgouget@free.fr
--- dlls/dxgi/swapchain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dxgi/swapchain.c b/dlls/dxgi/swapchain.c index 64c5958f780..d567056062e 100644 --- a/dlls/dxgi/swapchain.c +++ b/dlls/dxgi/swapchain.c @@ -2180,7 +2180,7 @@ static HRESULT d3d12_swapchain_op_present_execute(struct d3d12_swapchain *swapch if (swapchain->frame_latency_fence) { /* Use the same bias as d3d12_swapchain_present(). Add one to - * account for the "++swapchain->frame_numer" there. */ + * account for the "++swapchain->frame_number" there. */ uint64_t number = op->present.frame_number + DXGI_MAX_SWAP_CHAIN_BUFFERS + 1;
if (FAILED(hr = ID3D12CommandQueue_Signal(swapchain->command_queue,
From: Francois Gouget fgouget@free.fr
--- dlls/win32u/tests/win32u.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/win32u/tests/win32u.c b/dlls/win32u/tests/win32u.c index 7ce6e990874..cd7b334901a 100644 --- a/dlls/win32u/tests/win32u.c +++ b/dlls/win32u/tests/win32u.c @@ -1392,7 +1392,7 @@ static void check_params( const struct lparam_hook_test *test, UINT message,
static void poison_lparam( const struct lparam_hook_test *test, LPARAM lparam ) { - /* message copy is never transfered back in hooks */ + /* message copy is never transferred back in hooks */ if (test->lparam_size && lparam != (LPARAM)lparam_buffer) memset( (void *)lparam, 0xc0, test->lparam_size ); }
From: Francois Gouget fgouget@free.fr
--- dlls/ntdll/tests/exception.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index ed3939e9c04..4560de0001b 100644 --- a/dlls/ntdll/tests/exception.c +++ b/dlls/ntdll/tests/exception.c @@ -9628,7 +9628,7 @@ static void wait_for_thread_next_suspend(HANDLE thread) DWORD result;
result = ResumeThread(thread); - ok(result == 1, "Got unexpexted suspend count %lu.\n", result); + ok(result == 1, "Got unexpected suspend count %lu.\n", result);
/* NtQueryInformationThread(ThreadSuspendCount, ...) is not supported on older Windows. */ while (!(result = SuspendThread(thread))) @@ -9636,9 +9636,9 @@ static void wait_for_thread_next_suspend(HANDLE thread) ResumeThread(thread); Sleep(1); } - ok(result == 1, "Got unexpexted suspend count %lu.\n", result); + ok(result == 1, "Got unexpected suspend count %lu.\n", result); result = ResumeThread(thread); - ok(result == 2, "Got unexpexted suspend count %lu.\n", result); + ok(result == 2, "Got unexpected suspend count %lu.\n", result); }
#define CONTEXT_NATIVE (CONTEXT_XSTATE & CONTEXT_CONTROL) @@ -9808,7 +9808,7 @@ static void test_extended_context(void) bret = pInitializeContext(context_buffer, flags, &context, &length2); ok(bret && GetLastError() == 0xdeadbeef, "Got unexpected bret %#x, GetLastError() %lu, flags %#lx.\n", bret, GetLastError(), flags); - ok(length2 == expected_length, "Got unexpexted length %#lx.\n", length); + ok(length2 == expected_length, "Got unexpected length %#lx.\n", length); ok((BYTE *)context == context_buffer, "Got unexpected context %p, flags %#lx.\n", context, flags);
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset); @@ -9938,7 +9938,7 @@ static void test_extended_context(void) bret = pInitializeContext(context_buffer2 + 2, flags, &context, &length2); ok(bret && GetLastError() == 0xdeadbeef, "Got unexpected bret %#x, GetLastError() %lu, flags %#lx.\n", bret, GetLastError(), flags); - ok(length2 == expected_length, "Got unexpexted length %#lx.\n", length); + ok(length2 == expected_length, "Got unexpected length %#lx.\n", length); ok(!memcmp(context_buffer2 + align, context_buffer, sizeof(context_buffer2) - align), "Context data do not match, flags %#lx.\n", flags); @@ -9984,7 +9984,7 @@ static void test_extended_context(void) bret = pInitializeContext2(context_buffer2 + 2, flags, &context, &length2, 0); ok(bret && GetLastError() == 0xdeadbeef, "Got unexpected bret %#x, GetLastError() %lu, flags %#lx.\n", bret, GetLastError(), flags); - ok(length2 == expected_length, "Got unexpexted length %#lx.\n", length); + ok(length2 == expected_length, "Got unexpected length %#lx.\n", length); ok(!memcmp(context_buffer2 + align, context_buffer, sizeof(context_buffer2) - align), "Context data do not match, flags %#lx.\n", flags); @@ -10095,7 +10095,7 @@ static void test_extended_context(void) bret = pInitializeContext(context_buffer, flags, &context, &length2); ok(bret && GetLastError() == 0xdeadbeef, "Got unexpected bret %#x, GetLastError() %lu, flags %#lx.\n", bret, GetLastError(), flags); - ok(length2 == length, "Got unexpexted length %#lx.\n", length); + ok(length2 == length, "Got unexpected length %#lx.\n", length); ok((BYTE *)context == context_buffer, "Got unexpected context %p.\n", context);
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset); @@ -10233,7 +10233,7 @@ static void test_extended_context(void) bret = pInitializeContext2(context_buffer, flags, &context, &length2, 0); ok(bret && GetLastError() == 0xdeadbeef, "Got unexpected bret %#x, GetLastError() %lu, flags %#lx.\n", bret, GetLastError(), flags); - ok(length2 == length, "Got unexpexted length %#lx.\n", length); + ok(length2 == length, "Got unexpected length %#lx.\n", length); ok((BYTE *)context == context_buffer, "Got unexpected context %p.\n", context);
length2 = 0xdeadbeef;
From: Francois Gouget fgouget@free.fr
--- dlls/windows.media.speech/tests/speech.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/windows.media.speech/tests/speech.c b/dlls/windows.media.speech/tests/speech.c index 74336b802e5..49a4915332a 100644 --- a/dlls/windows.media.speech/tests/speech.c +++ b/dlls/windows.media.speech/tests/speech.c @@ -1213,7 +1213,7 @@ static void test_SpeechRecognizer(void) completed_event_handler_create_static(&completed_handler); hr = ISpeechContinuousRecognitionSession_add_Completed(session, &completed_handler.IHandler_RecognitionCompleted_iface, &token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr); - ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value); + ok(token.value != 0xdeadbeef, "Got unexpected token: %#I64x.\n", token.value);
hr = ISpeechContinuousRecognitionSession_remove_Completed(session, token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_remove_ResultGenerated failed, hr %#lx.\n", hr); @@ -1225,7 +1225,7 @@ static void test_SpeechRecognizer(void) recognition_result_handler_create_static(&result_handler); hr = ISpeechContinuousRecognitionSession_add_ResultGenerated(session, &result_handler.IHandler_RecognitionResult_iface, &token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr); - ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value); + ok(token.value != 0xdeadbeef, "Got unexpected token: %#I64x.\n", token.value);
hr = ISpeechContinuousRecognitionSession_remove_ResultGenerated(session, token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_remove_ResultGenerated failed, hr %#lx.\n", hr); @@ -1708,7 +1708,7 @@ static void test_Recognition(void) recognition_result_handler_create_static(&result_handler); hr = ISpeechContinuousRecognitionSession_add_ResultGenerated(session, &result_handler.IHandler_RecognitionResult_iface, &token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr); - ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value); + ok(token.value != 0xdeadbeef, "Got unexpected token: %#I64x.\n", token.value);
recog_state = 0xdeadbeef; hr = ISpeechRecognizer2_get_State(recognizer2, &recog_state);
From: Francois Gouget fgouget@free.fr
--- dlls/winewayland.drv/xdg-shell.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winewayland.drv/xdg-shell.xml b/dlls/winewayland.drv/xdg-shell.xml index 6eb0a67c5d8..1df70014601 100644 --- a/dlls/winewayland.drv/xdg-shell.xml +++ b/dlls/winewayland.drv/xdg-shell.xml @@ -620,7 +620,7 @@ attributes (e.g. title, state, stacking, ...) are discarded for an xdg_toplevel surface when it is unmapped. The xdg_toplevel returns to the state it had right after xdg_surface.get_toplevel. The client - can re-map the toplevel by perfoming a commit without any buffer + can re-map the toplevel by performing a commit without any buffer attached, waiting for a configure event and handling it as usual (see xdg_surface description).
From: Francois Gouget fgouget@free.fr
--- dlls/dbghelp/tests/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/tests/path.c b/dlls/dbghelp/tests/path.c index 54189c7ed5c..756eb862df9 100644 --- a/dlls/dbghelp/tests/path.c +++ b/dlls/dbghelp/tests/path.c @@ -1,5 +1,5 @@ /* - * Copyright 2023 Eric Pouech for Codeweavers + * Copyright 2023 Eric Pouech for CodeWeavers * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public
v2: Added two more spelling fixes.
Interestingly none of the failures (ddraw:ddraw2, ddraw:ddraw7, explorer.exe:explorer) are known yet. This seems to be because they mostly happen on the GitLab CI, and particularly in MRs, though there is always at least one other instance elsewhere.
Anyway I don't think any of them are related to this MR.
This merge request was approved by Zebediah Figura.
This merge request was approved by Bernhard Kölbl.
This merge request was approved by Jan Sikorski.