Remove extra parens to silence clang warning.

This commit is contained in:
Warner Losh 2014-01-27 19:31:18 +00:00
parent 3d2ec11759
commit 255943f9d0

View File

@ -269,7 +269,7 @@ db_unwind_exec_insn(struct unwind_state *state)
/* Stop processing */
state->entries = 0;
} else if ((insn == INSN_POP_REGS)) {
} else if (insn == INSN_POP_REGS) {
unsigned int mask, reg;
mask = db_unwind_exec_read_byte(state);