make indent

This commit is contained in:
Robert Swiecki 2023-09-21 08:31:47 +02:00
parent 557633c1de
commit d7cf1a9c0d

View File

@ -520,7 +520,7 @@ static uint8_t cloneStack[128 * 1024] __attribute__((aligned(__BIGGEST_ALIGNMENT
/* Cannot be on the stack, as the child's stack pointer will change after clone() */ /* Cannot be on the stack, as the child's stack pointer will change after clone() */
static __thread jmp_buf env; static __thread jmp_buf env;
[[noreturn]] static int cloneFunc([[maybe_unused]] void* arg ) { [[noreturn]] static int cloneFunc([[maybe_unused]] void* arg) {
longjmp(env, 1); longjmp(env, 1);
LOG_F("Execution past longjmp"); LOG_F("Execution past longjmp");
} }