From: Alan Modra Date: Wed, 9 May 2018 11:05:43 +0000 (+0930) Subject: Fix typo in od-macho.c X-Git-Tag: binutils-2_31~501 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60cb2c8a331ed8e4ad20afc51f9cdb3d8d18a869;p=external%2Fbinutils.git Fix typo in od-macho.c PR 22069 * od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4cc4cba..26601b9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2018-05-09 Alan Modra + + * od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch. + 2018-05-09 Sebastian Rasmussen * od-macho.c (dump_unwind_encoding_x86): Adjust for macro renaming. diff --git a/binutils/od-macho.c b/binutils/od-macho.c index b0c39b3..8153ada 100644 --- a/binutils/od-macho.c +++ b/binutils/od-macho.c @@ -1688,7 +1688,7 @@ dump_unwind_encoding_x86 (unsigned int encoding, unsigned int sz, unsigned int regs; char pfx = sz == 8 ? 'R' : 'E'; - regs = encoding & MACH_O_UNWIND_X86_64_RBP_FRAME_REGISTERS + regs = encoding & MACH_O_UNWIND_X86_64_RBP_FRAME_REGISTERS; printf (" %cSP frame", pfx); if (regs != 0) {