aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2023-09-21 08:31:47 +0200
committerRobert Swiecki <robert@swiecki.net>2023-09-21 08:31:47 +0200
commitd7cf1a9c0d6131ed5d55ca0b308ac705a9f67030 (patch)
treea3541b0bfbbbf2fc1d4c02c2f7c0a312987a49e5
parent557633c1de6e58c0791f349d4f0968899f97bdac (diff)
downloadnsjail-d7cf1a9c0d6131ed5d55ca0b308ac705a9f67030.tar.gz
make indent
-rw-r--r--subproc.cc2
1 files changed, 1 insertions, 1 deletions
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");
}