diff options
author | Ben Elliston <bje@au.ibm.com> | 2003-04-01 10:49:02 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2003-04-01 10:49:02 +0000 |
commit | 0cc1cf992d9edb4a5dd9f56c4eec348c1cdad3dc (patch) | |
tree | 72555e19bbea23497acbfe4f3179e3caa55be6d4 /bfd | |
parent | d63fd5d103a7ddf4b15c2945b47a5f633485c6cf (diff) | |
download | gdb-0cc1cf992d9edb4a5dd9f56c4eec348c1cdad3dc.zip gdb-0cc1cf992d9edb4a5dd9f56c4eec348c1cdad3dc.tar.gz gdb-0cc1cf992d9edb4a5dd9f56c4eec348c1cdad3dc.tar.bz2 |
* dwarf2.c (read_attribute_value): Correct typo in comment.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/dwarf2.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 4e59f8b..786e939 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2003-04-01 Ben Elliston <bje@wasabisystems.com> + + * dwarf2.c (read_attribute_value): Correct typo in comment. + 2003-04-01 Nick Clifton <nickc@redhat.com> * dwarf2.c (concat_filename): Use bfd_malloc() and strdup() diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 1566b9a..8a4cc64 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -650,7 +650,7 @@ read_attribute_value (attr, form, unit, info_ptr) switch (form) { case DW_FORM_addr: - /* FIXME: DWARF3 draft sais DW_FORM_ref_addr is offset_size. */ + /* FIXME: DWARF3 draft says DW_FORM_ref_addr is offset_size. */ case DW_FORM_ref_addr: DW_ADDR (attr) = read_address (unit, info_ptr); info_ptr += unit->addr_size; |