From 31339216b7d278a16ea8f321e5b863a728bce916 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Tue, 17 Aug 2021 10:56:48 +0200 Subject: [PATCH] fixed missing semicolon in sched.h --- kinclude/sched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kinclude/sched.h b/kinclude/sched.h index 5cf7b1e..e811e8b 100644 --- a/kinclude/sched.h +++ b/kinclude/sched.h @@ -8,7 +8,7 @@ enum process_status { PROC_RDY = 1, PROC_WAIT_PROC = 2, PROC_WAIT_SLEEP = 3, -} +}; // process structure: typedef struct ProcessControlBlock ProcessControlBlock;