summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-03-12 09:59:52 +0000
committerNick Clifton <nickc@redhat.com>2003-03-12 09:59:52 +0000
commit40ce28cf334e99da44f4b3ef608939b3dcd85a82 (patch)
treeffba1887fcc23785ab11c7dce7fadc408c6ee5da
parent04b3114ff59059eada1dd7a2d1167546825217c3 (diff)
downloadgdb-40ce28cf334e99da44f4b3ef608939b3dcd85a82.tar.gz
Rename 'index' to 'offset'
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/xsym.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 051769b2cad..d2209f4c5cb 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-12 Nick Clifton <nickc@redhat.com>
+
+ * xsym.c (bfd_sym_fetch_type_information_table_entry): Change
+ 'index' to 'offset' in test for zero value.
+
2003-03-11 Alexandre Oliva <aoliva@redhat.com>
* elfxx-mips.c (mips_elf_create_dynamic_relocation): Do not create
diff --git a/bfd/xsym.c b/bfd/xsym.c
index 65475742f13..d73c05d871f 100644
--- a/bfd/xsym.c
+++ b/bfd/xsym.c
@@ -1,5 +1,5 @@
/* xSYM symbol-file support for BFD.
- Copyright 1999, 2000, 2001, 2002
+ Copyright 1999, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@@ -1131,7 +1131,7 @@ bfd_sym_fetch_type_information_table_entry (abfd, entry, offset)
BFD_ASSERT (bfd_sym_valid (abfd));
sdata = abfd->tdata.sym_data;
- if (index == 0)
+ if (offset == 0)
return -1;
if (bfd_seek (abfd, offset, SEEK_SET) < 0)