Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.

Commit c758d15

Browse files
committed
Remove superfluous parentheses from link.x
Fixes #102
1 parent 99303dd commit c758d15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)