From 2f010e941c80d6527bd14f75fa1bff73b700a6af Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 26 Dec 2018 20:57:51 +0100 Subject: [PATCH] Unbreak the spawn stress test. --- Kernel/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 356215d7c2f..1607abc7a53 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -100,7 +100,7 @@ static void init_stage2() #endif #ifdef STRESS_TEST_SPAWNING - Process::create_kernel_process(spawn_stress, "spawn_stress"); + Process::create_kernel_process("spawn_stress", spawn_stress); #endif current->sys$exit(0);