aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r--kernel/features/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 1c0b443..ac62195 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -43,7 +43,7 @@ void scheduler(struct regs *regs)
current = proc_list->head;
while (!current) {
- if (!current || !current->next || !current->next->data) {
+ if (!current->next || !current->next->data) {
assert(proc_list->head);
current = proc_list->head;
} else {