From a963040f0a40c5cd0032ffdbf80716611bf84c20 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 12 Mar 2024 09:04:46 +0900 Subject: [PATCH] crt1-command.c: fix whitespace issues (#480) --- libc-bottom-half/crt/crt1-command.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libc-bottom-half/crt/crt1-command.c b/libc-bottom-half/crt/crt1-command.c index fb9ee71f..d2030cb7 100644 --- a/libc-bottom-half/crt/crt1-command.c +++ b/libc-bottom-half/crt/crt1-command.c @@ -20,18 +20,18 @@ void _start(void) { static volatile _Atomic int started = 0; int expected = 0; if (!atomic_compare_exchange_strong(&started, &expected, 1)) { - __builtin_trap(); + __builtin_trap(); } #else static volatile int started = 0; if (started != 0) { - __builtin_trap(); + __builtin_trap(); } started = 1; #endif #ifdef _REENTRANT - __wasi_init_tp(); + __wasi_init_tp(); #endif // The linker synthesizes this to call constructors.