[PATCH 0/1] MR6946: ntdll/tests: Fix format warning with clang.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6946
From: Eric Pouech <epouech(a)codeweavers.com> Signed-off-by: Eric Pouech <epouech(a)codeweavers.com> --- dlls/ntdll/tests/exception.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index a94ef3eef69..4a89cf6a5dc 100644 --- a/dlls/ntdll/tests/exception.c +++ b/dlls/ntdll/tests/exception.c @@ -8056,7 +8056,7 @@ static DWORD WINAPI brk_exception_handler( EXCEPTION_RECORD *rec, void *frame, { ok( rec->ExceptionCode == brk_exception_handler_code, "got: %08lx\n", rec->ExceptionCode ); ok( rec->NumberParameters == 0, "got: %ld\n", rec->NumberParameters ); - ok( rec->ExceptionAddress == (void *)context->Pc, "got addr: %p, pc: %p\n", rec->ExceptionAddress, context->Pc ); + ok( rec->ExceptionAddress == (void *)context->Pc, "got addr: %p, pc: %p\n", rec->ExceptionAddress, (void *)context->Pc ); context->Pc += 4; return ExceptionContinueExecution; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6946
participants (2)
-
Eric Pouech -
eric pouech (@epo)