Fix typo in od-macho.c

PR 22069
	* od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch.
This commit is contained in:
Alan Modra 2018-05-09 20:35:43 +09:30
parent 493ffac5aa
commit 60cb2c8a33
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2018-05-09 Alan Modra <amodra@gmail.com>
* od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch.
2018-05-09 Sebastian Rasmussen <sebras@gmail.com>
* od-macho.c (dump_unwind_encoding_x86): Adjust for macro renaming.

View File

@ -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)
{