From: H.J. Lu Date: Wed, 18 Jul 2012 17:08:18 +0000 (+0000) Subject: Fix a typo in section.c comments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c06fc9eb02629b80465dbbe940fe80221432b2b8;p=binutils-gdb.git Fix a typo in section.c comments PR binutils/14335 * section.c: Fix a typo in comments. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index da9e6a2e86e..f12e190c56e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2012-07-18 Nicolàs Alejandro Di Risio + + PR binutils/14335 + * section.c: Fix a typo in comments. + 2012-07-13 Andreas Krebbel * elf64-s390.c: Include elf-s390-common.c. diff --git a/bfd/section.c b/bfd/section.c index a3b7c56db56..ab5635b4b5f 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, ...)