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
4c4d4386
Commit
4c4d4386
authored
Oct 18, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Cast-qual warnings fix.
parent
4087669a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
stabs.c
dlls/dbghelp/stabs.c
+13
-8
No files found.
dlls/dbghelp/stabs.c
View file @
4c4d4386
...
...
@@ -278,20 +278,25 @@ static struct symt** stabs_find_ref(long filenr, long subnr)
static
struct
symt
**
stabs_read_type_enum
(
const
char
**
x
)
{
long
filenr
,
subnr
;
const
char
*
iter
;
char
*
end
;
if
(
**
x
==
'('
)
iter
=
*
x
;
if
(
*
iter
==
'('
)
{
(
*
x
)
++
;
/* '(' */
filenr
=
strtol
(
*
x
,
(
char
**
)
x
,
10
);
/* <int> */
(
*
x
)
++
;
/* ',' */
subnr
=
strtol
(
*
x
,
(
char
**
)
x
,
10
);
/* <int> */
(
*
x
)
++
;
/* ')' */
++
iter
;
/* '(' */
filenr
=
strtol
(
iter
,
&
end
,
10
);
/* <int> */
iter
=
++
end
;
/* ',' */
subnr
=
strtol
(
iter
,
&
end
,
10
);
/* <int> */
iter
=
++
end
;
/* ')' */
}
else
{
filenr
=
0
;
subnr
=
strtol
(
*
x
,
(
char
**
)
x
,
10
);
/* <int> */
filenr
=
0
;
subnr
=
strtol
(
iter
,
&
end
,
10
);
/* <int> */
iter
=
end
;
}
*
x
=
iter
;
return
stabs_find_ref
(
filenr
,
subnr
);
}
...
...
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