From: Ben Elliston Date: Tue, 1 Apr 2003 10:49:02 +0000 (+0000) Subject: * dwarf2.c (read_attribute_value): Correct typo in comment. X-Git-Tag: binutils-2_14-branchpoint~321 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0cc1cf992d9edb4a5dd9f56c4eec348c1cdad3dc;p=platform%2Fupstream%2Fbinutils.git * dwarf2.c (read_attribute_value): Correct typo in comment. --- 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 + + * dwarf2.c (read_attribute_value): Correct typo in comment. + 2003-04-01 Nick Clifton * 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;