]> git.proxmox.com Git - wasi-libc.git/commitdiff
crt1-command.c: fix whitespace issues (#480)
authorYAMAMOTO Takashi <yamamoto@midokura.com>
Tue, 12 Mar 2024 00:04:46 +0000 (09:04 +0900)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 25 Jun 2024 10:13:35 +0000 (12:13 +0200)
libc-bottom-half/crt/crt1-command.c

index fb9ee71fb40e7912e24812d324f5b08007a916cb..d2030cb7805a01d45ba55ff30ce81ac088722b35 100644 (file)
@@ -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.