From: ppluzhnikov Date: Tue, 26 Jul 2011 21:09:05 +0000 (+0000) Subject: 2011-07-26 Sterling Augustine X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=630c0adeef0cd1d7150eed8334f2b428936f1328;p=pf3gnuchains%2Fpf3gnuchains4x.git 2011-07-26 Sterling Augustine * cli/cli-dump.c (dump_binary_file): Change parameter type to ULONGEST. (dump_bfd_file): Likewise. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a6b5e94a67..2e3736545f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2011-07-26 Sterling Augustine + + * cli/cli-dump.c (dump_binary_file): Change parameter type to + ULONGEST. + (dump_bfd_file): Likewise. + 2011-07-26 Philippe Waroquiers * remote.c (remote_region_ok_for_hw_watchpoint): New function. diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 248529df16..1b2b5d4d4e 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -174,7 +174,7 @@ append_command (char *cmd, int from_tty) static void dump_binary_file (const char *filename, const char *mode, - const bfd_byte *buf, int len) + const bfd_byte *buf, ULONGEST len) { FILE *file; int status; @@ -188,7 +188,7 @@ dump_binary_file (const char *filename, const char *mode, static void dump_bfd_file (const char *filename, const char *mode, const char *target, CORE_ADDR vaddr, - const bfd_byte *buf, int len) + const bfd_byte *buf, ULONGEST len) { bfd *obfd; asection *osection;