From: Nick Clifton Date: Fri, 11 Sep 2009 08:08:11 +0000 (+0000) Subject: * rs6000-core.c (read_hdr): Fix typo in recent C++ compatibility X-Git-Tag: gdb_7_0-2009-09-16-branchpoint~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=342e3c8587a110b2c26e149ad6ef8611619a9347;p=external%2Fbinutils.git * rs6000-core.c (read_hdr): Fix typo in recent C++ compatibility changes. --- diff --git a/bfd/rs6000-core.c b/bfd/rs6000-core.c index 733556e..d9c06b6 100644 --- a/bfd/rs6000-core.c +++ b/bfd/rs6000-core.c @@ -291,7 +291,7 @@ read_hdr (bfd *abfd, CoreHdr *core) /* Read the trailing portion of the structure. */ if (CORE_NEW (*core)) - size = sizeof (core->new_core); + size = sizeof (core->new_dump); else size = sizeof (core->old); size -= CORE_COMMONSZ;