Fix sign on comparison

This commit is contained in:
notsomeidiot123 2026-02-02 02:47:53 -05:00
parent 1826eb1ad3
commit f507134706
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ void remove_process_queue(uint32_t pid){
process_queue[i] = 0; process_queue[i] = 0;
} }
} }
if(old_index == last_queue_index || old_index < queue_length || old_index < PROCESS_COUNT){ if(old_index == last_queue_index || old_index > queue_length || old_index > PROCESS_COUNT){
asm("sti"); asm("sti");
return; return;
} }