summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2012-07-18 17:08:16 +0000
committerH.J. Lu <hjl.tools@gmail.com>2012-07-18 17:08:16 +0000
commit4b248712798cd84951cc7552594317c7d9c06dce (patch)
tree559d174e5e8d8f4244e811f36367f79993642368
parente79434dd522fa8ca88ced4314bf5e9d1eb90b42a (diff)
downloadbinutils-redhat-4b248712798cd84951cc7552594317c7d9c06dce.tar.gz
Fix a typo in section.c comments
PR binutils/14335 * section.c: Fix a typo in comments.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/section.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index da9e6a2e86..f12e190c56 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2012-07-18 Nicolàs Alejandro Di Risio <sheeva@tiscali.it>
+
+ PR binutils/14335
+ * section.c: Fix a typo in comments.
+
2012-07-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* elf64-s390.c: Include elf-s390-common.c.
diff --git a/bfd/section.c b/bfd/section.c
index a3b7c56db5..ab5635b4b5 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, ...)