Remove extra parens to silence clang warning.

This commit is contained in:
imp 2014-01-27 19:31:18 +00:00
parent 0fa3283d5a
commit 3230712bf1

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);