* cli/cli-dump.c (struct callback_data): load_offset needs to
have signed long type.
This commit is contained in:
parent
3dd2d30bfa
commit
29e4017ddc
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-03-08 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
|
* cli/cli-dump.c (struct callback_data): load_offset needs to
|
||||||
|
have signed long type.
|
||||||
|
|
||||||
2007-03-07 Joel Brobecker <brobecker@adacore.com>
|
2007-03-07 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* mips-tdep.c (mips_insn16_frame_cache, mips_insn32_frame_sniffer):
|
* mips-tdep.c (mips_insn16_frame_cache, mips_insn32_frame_sniffer):
|
||||||
|
|
|
@ -443,7 +443,7 @@ add_dump_command (char *name, void (*func) (char *args, char *mode),
|
||||||
|
|
||||||
/* Opaque data for restore_section_callback. */
|
/* Opaque data for restore_section_callback. */
|
||||||
struct callback_data {
|
struct callback_data {
|
||||||
unsigned long load_offset;
|
long load_offset;
|
||||||
CORE_ADDR load_start;
|
CORE_ADDR load_start;
|
||||||
CORE_ADDR load_end;
|
CORE_ADDR load_end;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue