From b3bbfaeff0b93ad49a7afcaed1b3a8ab91ba9eca Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 10 Feb 2026 01:22:25 +0200 Subject: [PATCH] LibC: Fix posix_spawnattr_t definition --- userspace/libraries/LibC/include/spawn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/libraries/LibC/include/spawn.h b/userspace/libraries/LibC/include/spawn.h index eba43645..5f87ca53 100644 --- a/userspace/libraries/LibC/include/spawn.h +++ b/userspace/libraries/LibC/include/spawn.h @@ -18,7 +18,7 @@ typedef struct { short flags; pid_t pgroup; - sched_param schedparam; + struct sched_param schedparam; int schedpolicy; sigset_t sigdefault; sigset_t sigmask;