From 6aa9ef2726e42c4ae062b55be4d5cc015767d997 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Thu, 23 Nov 2023 12:22:02 +0100 Subject: Fix code style --- Process.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Process.h') diff --git a/Process.h b/Process.h index 92908155..0c3562ac 100644 --- a/Process.h +++ b/Process.h @@ -253,11 +253,11 @@ static inline pid_t Process_getThreadGroup(const Process* this) { } static inline void Process_setParent(Process* this, pid_t pid) { - this->super.parent = pid; + this->super.parent = pid; } static inline pid_t Process_getParent(const Process* this) { - return (pid_t)this->super.parent; + return (pid_t)this->super.parent; } static inline pid_t Process_getGroupOrParent(const Process* this) { -- cgit v1.2.3