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
f8198e66
Commit
f8198e66
authored
Jul 19, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Cast-qual warnings fix.
parent
9cc84f63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dwarf.c
dlls/dbghelp/dwarf.c
+4
-4
No files found.
dlls/dbghelp/dwarf.c
View file @
f8198e66
...
...
@@ -2207,10 +2207,10 @@ BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
dwarf2_comp_unit_t
comp_unit
;
comp_unit_stream
=
(
const
dwarf2_comp_unit_stream_t
*
)
comp_unit_cursor
;
comp_unit
.
length
=
*
(
unsigned
long
*
)
comp_unit_stream
->
length
;
comp_unit
.
version
=
*
(
unsigned
short
*
)
comp_unit_stream
->
version
;
comp_unit
.
abbrev_offset
=
*
(
unsigned
long
*
)
comp_unit_stream
->
abbrev_offset
;
comp_unit
.
word_size
=
*
(
unsigned
char
*
)
comp_unit_stream
->
word_size
;
comp_unit
.
length
=
*
(
const
unsigned
long
*
)
comp_unit_stream
->
length
;
comp_unit
.
version
=
*
(
const
unsigned
short
*
)
comp_unit_stream
->
version
;
comp_unit
.
abbrev_offset
=
*
(
const
unsigned
long
*
)
comp_unit_stream
->
abbrev_offset
;
comp_unit
.
word_size
=
*
(
const
unsigned
char
*
)
comp_unit_stream
->
word_size
;
dwarf2_parse_compilation_unit
(
section
,
&
comp_unit
,
module
,
thunks
,
comp_unit_cursor
,
load_offset
);
...
...
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