[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug binutils/14335] New: Trivial typing error in bfd/section.c
From: |
sheeva at tiscali dot it |
Subject: |
[Bug binutils/14335] New: Trivial typing error in bfd/section.c |
Date: |
Sat, 07 Jul 2012 06:47:06 +0000 |
http://sourceware.org/bugzilla/show_bug.cgi?id=14335
Bug #: 14335
Summary: Trivial typing error in bfd/section.c
Product: binutils
Version: 2.23 (HEAD)
Status: NEW
Severity: enhancement
Priority: P2
Component: binutils
AssignedTo: address@hidden
ReportedBy: address@hidden
Classification: Unclassified
Created attachment 6513
--> http://sourceware.org/bugzilla/attachment.cgi?id=6513
cvs patch to this error
It's only an omission in map_over_sections example.
Here it is the patch:
Index: bfd/section.c
===================================================================
RCS file: /cvs/src/src/bfd/section.c,v
retrieving revision 1.116
diff -u -r1.116 section.c
--- bfd/section.c 29 Jun 2012 14:46:03 -0000 1.116
+++ bfd/section.c 7 Jul 2012 06:40:21 -0000
@@ -1311,7 +1311,7 @@
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, ...)
--
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
- [Bug binutils/14335] New: Trivial typing error in bfd/section.c,
sheeva at tiscali dot it <=