From d7cf1a9c0d6131ed5d55ca0b308ac705a9f67030 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Thu, 21 Sep 2023 08:31:47 +0200 Subject: [PATCH] make indent --- subproc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subproc.cc b/subproc.cc index 1337491..3ef143f 100644 --- a/subproc.cc +++ b/subproc.cc @@ -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() */ static __thread jmp_buf env; -[[noreturn]] static int cloneFunc([[maybe_unused]] void* arg ) { +[[noreturn]] static int cloneFunc([[maybe_unused]] void* arg) { longjmp(env, 1); LOG_F("Execution past longjmp"); }