* cli/cli-dump.c (struct callback_data): load_offset needs to

have signed long type.
This commit is contained in:
Ulrich Weigand 2007-03-08 16:54:02 +00:00
parent 3dd2d30bfa
commit 29e4017ddc
2 changed files with 6 additions and 1 deletions

View File

@ -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>
* mips-tdep.c (mips_insn16_frame_cache, mips_insn32_frame_sniffer):

View File

@ -443,7 +443,7 @@ add_dump_command (char *name, void (*func) (char *args, char *mode),
/* Opaque data for restore_section_callback. */
struct callback_data {
unsigned long load_offset;
long load_offset;
CORE_ADDR load_start;
CORE_ADDR load_end;
};