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
b677e81d
Commit
b677e81d
authored
Mar 17, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Avoid some warnings on Solaris.
parent
41c0cc8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
elf_module.c
dlls/dbghelp/elf_module.c
+6
-6
No files found.
dlls/dbghelp/elf_module.c
View file @
b677e81d
...
...
@@ -23,7 +23,7 @@
#include "wine/port.h"
#if defined(__svr4__) || defined(__sun)
#define __ELF__
#define __ELF__
1
/* large files are not supported by libelf */
#undef _FILE_OFFSET_BITS
#define _FILE_OFFSET_BITS 32
...
...
@@ -516,10 +516,10 @@ static const Elf32_Sym* elf_lookup_symtab(const struct module* module,
}
if
(
result
)
{
FIXME
(
"Already found symbol %s (%s) in symtab %s @%08x and %s @%08x
\n
"
,
FIXME
(
"Already found symbol %s (%s) in symtab %s @%08x and %s @%08x
\n
"
,
name
,
compiland_name
,
source_get
(
module
,
result
->
compiland
->
source
),
result
->
symp
->
st_value
,
source_get
(
module
,
ste
->
compiland
->
source
),
ste
->
symp
->
st_value
);
source_get
(
module
,
result
->
compiland
->
source
),
(
unsigned
int
)
result
->
symp
->
st_value
,
source_get
(
module
,
ste
->
compiland
->
source
),
(
unsigned
int
)
ste
->
symp
->
st_value
);
}
else
{
...
...
@@ -573,7 +573,7 @@ static void elf_finish_stabs_info(struct module* module, struct hash_table* symt
if
(((
struct
symt_function
*
)
sym
)
->
size
&&
((
struct
symt_function
*
)
sym
)
->
size
!=
symp
->
st_size
)
FIXME
(
"Changing size for %p/%s!%s from %08lx to %08x
\n
"
,
sym
,
debugstr_w
(
module
->
module
.
ModuleName
),
sym
->
hash_elt
.
name
,
((
struct
symt_function
*
)
sym
)
->
size
,
symp
->
st_size
);
((
struct
symt_function
*
)
sym
)
->
size
,
(
unsigned
int
)
symp
->
st_size
);
((
struct
symt_function
*
)
sym
)
->
address
=
module
->
elf_info
->
elf_addr
+
symp
->
st_value
;
...
...
@@ -700,7 +700,7 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt
(
kind
==
(
ELF32_ST_BIND
(
ste
->
symp
->
st_info
)
==
STB_LOCAL
)
?
DataIsFileStatic
:
DataIsGlobal
))
FIXME
(
"Duplicate in %s: %s<%08x-%08x> %s<%s-%s>
\n
"
,
debugstr_w
(
module
->
module
.
ModuleName
),
ste
->
ht_elt
.
name
,
addr
,
ste
->
symp
->
st_size
,
ste
->
ht_elt
.
name
,
addr
,
(
unsigned
int
)
ste
->
symp
->
st_size
,
symt
->
hash_elt
.
name
,
wine_dbgstr_longlong
(
xaddr
),
wine_dbgstr_longlong
(
xsize
));
}
...
...
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