Fix Error missing semicolon after function signature

This commit is contained in:
sBubshait
2024-10-16 07:40:41 +01:00
parent 8b3f9e353f
commit 9bb0b758c8

View File

@@ -72,7 +72,7 @@ void thread_schedule_tail (struct thread *prev);
static tid_t allocate_tid (void);
static bool priority_more (const struct list_elem *a_,
const struct list_elem *b_,
void *aux UNUSED)
void *aux UNUSED);
/* Initializes the threading system by transforming the code
that's currently running into a thread. This can't work in