Module: wine Branch: master Commit: 0b275e5b8e86bc8cec0b9a3e4ed8fce7a4db42ad URL: https://gitlab.winehq.org/wine/wine/-/commit/0b275e5b8e86bc8cec0b9a3e4ed8fce...
Author: Francois Gouget fgouget@free.fr Date: Wed Jul 26 11:42:42 2023 +0200
win32u/tests: Fix the spelling of a comment.
---
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 8d72dba243a..aaa27361206 100644 --- a/dlls/win32u/tests/win32u.c +++ b/dlls/win32u/tests/win32u.c @@ -1394,7 +1394,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 ); }