diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-24 13:14:37 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-24 13:14:37 +0000 |
commit | 1634dcbe1635ed0d3490feb085efcbb003a536ba (patch) | |
tree | b6466b3dbe8b0911ebcebf1f3e8a3ad435158580 /gdb/gdb_bfd.c | |
parent | d908c8af5a1d7d9122decf3cab08018e9f925d27 (diff) | |
download | gdb-1634dcbe1635ed0d3490feb085efcbb003a536ba.zip gdb-1634dcbe1635ed0d3490feb085efcbb003a536ba.tar.gz gdb-1634dcbe1635ed0d3490feb085efcbb003a536ba.tar.bz2 |
gdb/
* gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
parameters to bfd_get_section_name.
Diffstat (limited to 'gdb/gdb_bfd.c')
-rw-r--r-- | gdb/gdb_bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdb_bfd.c b/gdb/gdb_bfd.c index aa222b9..1e6af49 100644 --- a/gdb/gdb_bfd.c +++ b/gdb/gdb_bfd.c @@ -312,7 +312,7 @@ zlib_decompress_section (asection *sectp, error (_("Support for zlib-compressed data (from '%s', section '%s') " "is disabled in this copy of GDB"), bfd_get_filename (abfd), - bfd_get_section_name (sectp)); + bfd_get_section_name (abfd, sectp)); #else bfd_size_type compressed_size = bfd_get_section_size (sectp); gdb_byte *compressed_buffer = xmalloc (compressed_size); |