diff options
author | Nico Weber <thakis@chromium.org> | 2020-06-19 10:47:04 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-19 22:11:38 +0200 |
commit | 68f281c864aea9d6530a31f45b6a06fcb8545038 (patch) | |
tree | a5a176ca9ebac931ffac3f448b70eeb67fe6d525 | |
parent | 2188ed54b023f883c622e420e3c19ed6328ba3ea (diff) | |
download | serenity-68f281c864aea9d6530a31f45b6a06fcb8545038.zip |
LibC: Make spawn.h parse in C files
-rw-r--r-- | Libraries/LibC/spawn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/spawn.h b/Libraries/LibC/spawn.h index beced4b518..1fc1289f7f 100644 --- a/Libraries/LibC/spawn.h +++ b/Libraries/LibC/spawn.h @@ -59,7 +59,7 @@ typedef struct { typedef struct { short flags; pid_t pgroup; - sched_param schedparam; + struct sched_param schedparam; int schedpolicy; sigset_t sigdefault; sigset_t sigmask; |