From ab1318b7ed8a5551f0fd8c8fc593c1d5514f27b5 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Mon, 5 Jun 2017 10:59:47 +0000 Subject: [PATCH] Remove extraneous parentheses. Sponsored by: DARPA, AFRL --- sys/mips/mips/stack_machdep.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/mips/mips/stack_machdep.c b/sys/mips/mips/stack_machdep.c index 0f7c4bb1840f..dc6bfee2e7be 100644 --- a/sys/mips/mips/stack_machdep.c +++ b/sys/mips/mips/stack_machdep.c @@ -94,8 +94,7 @@ stack_capture(struct stack *st, u_register_t pc, u_register_t sp) switch (insn.IType.op) { case OP_SPECIAL: - if((insn.RType.func == OP_JR)) - { + if (insn.RType.func == OP_JR) { if (ra >= (u_register_t)(intptr_t)btext) break; if (insn.RType.rs != RA)