Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
09343d89
Commit
09343d89
authored
Feb 08, 2022
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp: Print 0x prefix with %#x format in traces.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4397d97d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
misc.c
dlls/msvcp90/misc.c
+3
-3
No files found.
dlls/msvcp90/misc.c
View file @
09343d89
...
...
@@ -1479,7 +1479,7 @@ BOOL CDECL MSVCP__crtInitializeCriticalSectionEx(
HANDLE
CDECL
MSVCP__crtCreateEventExW
(
SECURITY_ATTRIBUTES
*
attribs
,
LPCWSTR
name
,
DWORD
flags
,
DWORD
access
)
{
TRACE
(
"(%p %s
0x%08lx 0x%08
lx)
\n
"
,
attribs
,
debugstr_w
(
name
),
flags
,
access
);
TRACE
(
"(%p %s
%#lx %#
lx)
\n
"
,
attribs
,
debugstr_w
(
name
),
flags
,
access
);
return
CreateEventExW
(
attribs
,
name
,
flags
,
access
);
}
...
...
@@ -1514,7 +1514,7 @@ HANDLE CDECL MSVCP__crtCreateSemaphoreExW(
SECURITY_ATTRIBUTES
*
attribs
,
LONG
initial_count
,
LONG
max_count
,
LPCWSTR
name
,
DWORD
flags
,
DWORD
access
)
{
TRACE
(
"(%p %ld %ld %s
0x%08lx 0x%08
lx)
\n
"
,
attribs
,
initial_count
,
max_count
,
debugstr_w
(
name
),
TRACE
(
"(%p %ld %ld %s
%#lx %#
lx)
\n
"
,
attribs
,
initial_count
,
max_count
,
debugstr_w
(
name
),
flags
,
access
);
return
CreateSemaphoreExW
(
attribs
,
initial_count
,
max_count
,
name
,
flags
,
access
);
}
...
...
@@ -1544,7 +1544,7 @@ VOID CDECL MSVCP__crtCloseThreadpoolTimer(TP_TIMER *timer)
VOID
CDECL
MSVCP__crtSetThreadpoolTimer
(
TP_TIMER
*
timer
,
FILETIME
*
due_time
,
DWORD
period
,
DWORD
window_length
)
{
TRACE
(
"(%p %p
0x%08lx 0x%08
lx)
\n
"
,
timer
,
due_time
,
period
,
window_length
);
TRACE
(
"(%p %p
%#lx %#
lx)
\n
"
,
timer
,
due_time
,
period
,
window_length
);
return
SetThreadpoolTimer
(
timer
,
due_time
,
period
,
window_length
);
}
...
...
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