Skip to content

Commit 58f13cd

Browse files
authored
Merge pull request #922 from riscv/parens
tools: Remove unnecessary parens.
2 parents a992f2e + 5922594 commit 58f13cd

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)