Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
755d7833
Commit
755d7833
authored
Dec 08, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix printf format warnings on ARM platforms.
parent
f48500bb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
except_arm.c
dlls/msvcrt/except_arm.c
+1
-1
except_arm64.c
dlls/msvcrt/except_arm64.c
+2
-2
No files found.
dlls/msvcrt/except_arm.c
View file @
755d7833
...
@@ -56,7 +56,7 @@ int CDECL __CxxExceptionFilter( PEXCEPTION_POINTERS ptrs,
...
@@ -56,7 +56,7 @@ int CDECL __CxxExceptionFilter( PEXCEPTION_POINTERS ptrs,
EXCEPTION_DISPOSITION
CDECL
__CxxFrameHandler
(
EXCEPTION_RECORD
*
rec
,
DWORD
frame
,
CONTEXT
*
context
,
EXCEPTION_DISPOSITION
CDECL
__CxxFrameHandler
(
EXCEPTION_RECORD
*
rec
,
DWORD
frame
,
CONTEXT
*
context
,
DISPATCHER_CONTEXT
*
dispatch
)
DISPATCHER_CONTEXT
*
dispatch
)
{
{
FIXME
(
"%p %x %p %p: not implemented
\n
"
,
rec
,
frame
,
context
,
dispatch
);
FIXME
(
"%p %
l
x %p %p: not implemented
\n
"
,
rec
,
frame
,
context
,
dispatch
);
return
ExceptionContinueSearch
;
return
ExceptionContinueSearch
;
}
}
...
...
dlls/msvcrt/except_arm64.c
View file @
755d7833
...
@@ -54,10 +54,10 @@ int CDECL __CxxExceptionFilter( PEXCEPTION_POINTERS ptrs,
...
@@ -54,10 +54,10 @@ int CDECL __CxxExceptionFilter( PEXCEPTION_POINTERS ptrs,
/*********************************************************************
/*********************************************************************
* __CxxFrameHandler (MSVCRT.@)
* __CxxFrameHandler (MSVCRT.@)
*/
*/
EXCEPTION_DISPOSITION
CDECL
__CxxFrameHandler
(
EXCEPTION_RECORD
*
rec
,
DWORD
frame
,
CONTEXT
*
context
,
EXCEPTION_DISPOSITION
CDECL
__CxxFrameHandler
(
EXCEPTION_RECORD
*
rec
,
ULONG64
frame
,
CONTEXT
*
context
,
DISPATCHER_CONTEXT
*
dispatch
)
DISPATCHER_CONTEXT
*
dispatch
)
{
{
FIXME
(
"%p %x %p %p: not implemented
\n
"
,
rec
,
frame
,
context
,
dispatch
);
FIXME
(
"%p %
I64
x %p %p: not implemented
\n
"
,
rec
,
frame
,
context
,
dispatch
);
return
ExceptionContinueSearch
;
return
ExceptionContinueSearch
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment