diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-07-18 17:08:18 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-07-18 17:08:18 +0000 |
commit | c06fc9eb02629b80465dbbe940fe80221432b2b8 (patch) | |
tree | 7b853df13afb3fd18591aab356654516ae89dca8 /bfd/section.c | |
parent | 2b963b6863da340923061c856584451a6c3d5b71 (diff) | |
download | gdb-c06fc9eb02629b80465dbbe940fe80221432b2b8.zip gdb-c06fc9eb02629b80465dbbe940fe80221432b2b8.tar.gz gdb-c06fc9eb02629b80465dbbe940fe80221432b2b8.tar.bz2 |
Fix a typo in section.c comments
PR binutils/14335
* section.c: Fix a typo in comments.
Diffstat (limited to 'bfd/section.c')
-rw-r--r-- | bfd/section.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/section.c b/bfd/section.c index a3b7c56..ab5635b 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -1311,7 +1311,7 @@ DESCRIPTION This is the preferred method for iterating over sections; an alternative would be to use a loop: -| section *p; +| asection *p; | for (p = abfd->sections; p != NULL; p = p->next) | func (abfd, p, ...) |