Skip to content

Commit 5922594

Browse files
committed
tools: Remove unnecessary parens.
This makes it easier to merge the code into picky code bases.
1 parent a992f2e commit 5922594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debug_reg_printer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static unsigned int riscv_debug_reg_fields_to_s(char *buf, unsigned int offset,
7373

7474
uint64_t field_value = riscv_debug_reg_field_value(list.field, value);
7575

76-
if ((show == RISCV_DEBUG_REG_SHOW_ALL) ||
76+
if (show == RISCV_DEBUG_REG_SHOW_ALL ||
7777
(show == RISCV_DEBUG_REG_HIDE_UNNAMED_0 &&
7878
(field_value != 0 ||
7979
(list.field.values && list.field.values[0]))) ||

0 commit comments

Comments
 (0)