Skip to content

Commit b89b4e4

Browse files
committed
Remove superfluous parentheses from link.x
Fixes #102
1 parent 9e7d5a0 commit b89b4e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

riscv-rt/link.x

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ SECTIONS
5555
KEEP(*(.init));
5656
KEEP(*(.init.rust));
5757
. = ALIGN(4);
58-
(*(.trap));
59-
(*(.trap.rust));
58+
*(.trap);
59+
*(.trap.rust);
6060

6161
*(.text .text.*);
6262
} > REGION_TEXT

0 commit comments

Comments
 (0)