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
4d7eccd6
Commit
4d7eccd6
authored
Apr 08, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Trace 64-bit integers with I64 width modifier.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7c908eb9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
msc.c
dlls/dbghelp/msc.c
+1
-1
No files found.
dlls/dbghelp/msc.c
View file @
4d7eccd6
...
...
@@ -693,7 +693,7 @@ static struct symt* codeview_add_type_array(struct codeview_type_parse* ctp,
if
(
symt_get_info
(
ctp
->
module
,
elem
,
TI_GET_LENGTH
,
&
elem_size
)
&&
elem_size
)
{
if
(
arr_len
%
(
DWORD
)
elem_size
)
FIXME
(
"array size should be a multiple of element size %u %
lu
\n
"
,
arr_len
,
(
DWORD
)
elem_size
);
FIXME
(
"array size should be a multiple of element size %u %
I64u
\n
"
,
arr_len
,
elem_size
);
count
=
arr_len
/
(
unsigned
)
elem_size
;
}
return
&
symt_new_array
(
ctp
->
module
,
0
,
count
,
elem
,
index
)
->
symt
;
...
...
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