Fix typo in od-macho.c
authorAlan Modra <amodra@gmail.com>
Wed, 9 May 2018 11:05:43 +0000 (20:35 +0930)
committerAlan Modra <amodra@gmail.com>
Wed, 9 May 2018 11:13:56 +0000 (20:43 +0930)
PR 22069
* od-macho.c (dump_unwind_encoding_x86): Fix typo in last patch.

binutils/ChangeLog
binutils/od-macho.c

index 4cc4cba3dd8945fa88492ec487f88b21bc4bb27b..26601b927099dc7e2efc658f960fe9dc66e5c3c1 100644 (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.
index b0c39b3956081c55c64f2d764b4fb9522d431dc8..8153adae92563240eb3e273f75dc0357dade562a 100644 (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)
          {
This page took 0.026457 seconds and 4 git commands to generate.