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
1297e859
Commit
1297e859
authored
Nov 28, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Make some data const.
parent
720ab29a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
debug.c
tools/winedump/debug.c
+1
-1
pe.c
tools/winedump/pe.c
+1
-1
No files found.
tools/winedump/debug.c
View file @
1297e859
...
...
@@ -597,7 +597,7 @@ struct stab_nlist
unsigned
long
n_value
;
};
static
const
char
*
stabs_defs
[]
=
{
static
const
char
*
const
stabs_defs
[]
=
{
NULL
,
NULL
,
NULL
,
NULL
,
/* 00 */
NULL
,
NULL
,
NULL
,
NULL
,
/* 08 */
NULL
,
NULL
,
NULL
,
NULL
,
/* 10 */
...
...
tools/winedump/pe.c
View file @
1297e859
...
...
@@ -830,7 +830,7 @@ void dump_separate_dbg(void)
static
const
char
*
get_resource_type
(
unsigned
int
id
)
{
static
const
char
*
types
[]
=
static
const
char
*
const
types
[]
=
{
NULL
,
"CURSOR"
,
...
...
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