Skip to content

Commit a963040

Browse files
authored
crt1-command.c: fix whitespace issues (#480)
1 parent c8ef60a commit a963040

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

libc-bottom-half/crt/crt1-command.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ void _start(void) {
2020
static volatile _Atomic int started = 0;
2121
int expected = 0;
2222
if (!atomic_compare_exchange_strong(&started, &expected, 1)) {
23-
__builtin_trap();
23+
__builtin_trap();
2424
}
2525
#else
2626
static volatile int started = 0;
2727
if (started != 0) {
28-
__builtin_trap();
28+
__builtin_trap();
2929
}
3030
started = 1;
3131
#endif
3232

3333
#ifdef _REENTRANT
34-
__wasi_init_tp();
34+
__wasi_init_tp();
3535
#endif
3636

3737
// The linker synthesizes this to call constructors.

0 commit comments

Comments
 (0)