diff options
author | Yao Qi <yao@codesourcery.com> | 2014-01-02 15:36:55 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-01-14 22:20:59 +0800 |
commit | 7ec1862d1ac21dd92a3ea76a5a15eda4cf7b41ce (patch) | |
tree | 3f74aecf88e83f2e3e4e1aefc76e3fc8afd9bb02 /gdb/i386-cygwin-tdep.c | |
parent | dea80a27057a9bbf87f0bf5675b5a03ddd6fe18c (diff) | |
download | gdb-7ec1862d1ac21dd92a3ea76a5a15eda4cf7b41ce.zip gdb-7ec1862d1ac21dd92a3ea76a5a15eda4cf7b41ce.tar.gz gdb-7ec1862d1ac21dd92a3ea76a5a15eda4cf7b41ce.tar.bz2 |
Change 'len''s type from LONGEST to ULONGEST: gdbarch methods core_xfer_shared_libraries and core_xfer_shared_libraries_aix
This patch changes the type of 'len' from LONGEST to ULONGEST. 'len'
is the argument of gdbarch methods core_xfer_shared_libraries and
core_xfer_shared_libraries_aix.
gdb:
2014-01-14 Yao Qi <yao@codesourcery.com>
* gdbarch.sh (core_xfer_shared_libraries): Change its argument
'len''s type to ULONGEST.
(core_xfer_shared_libraries_aix): Likewise.
* gdbarch.c, gdbarch.h: Reenerated.
* i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
Change type of 'len' to ULONGEST.
* rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
(rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
Diffstat (limited to 'gdb/i386-cygwin-tdep.c')
-rw-r--r-- | gdb/i386-cygwin-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-cygwin-tdep.c b/gdb/i386-cygwin-tdep.c index 103762c..4b8a00d 100644 --- a/gdb/i386-cygwin-tdep.c +++ b/gdb/i386-cygwin-tdep.c @@ -171,7 +171,7 @@ out: static LONGEST windows_core_xfer_shared_libraries (struct gdbarch *gdbarch, gdb_byte *readbuf, - ULONGEST offset, LONGEST len) + ULONGEST offset, ULONGEST len) { struct obstack obstack; const char *buf; |