x86: core: Remove extra parenthesis
Extra parenthis was raising a warning when building using Clang/llvm Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
parent
18d96436a0
commit
48c6548d6a
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ static void unwind_stack(u32_t base_ptr, u16_t cs)
|
|||
}
|
||||
|
||||
frame = (struct stack_frame *)base_ptr;
|
||||
if ((frame == NULL)) {
|
||||
if (frame == NULL) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue