1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/sched: Fixed typo

This commit is contained in:
Marian Buschsieweke 2019-03-21 22:00:37 +01:00
parent c391ed4109
commit 435f798a2b
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -170,7 +170,7 @@ void sched_set_status(thread_t *process, thread_state_t status)
}
else {
if (process->status >= STATUS_ON_RUNQUEUE) {
DEBUG("sched_set_status: removing thread %" PRIkernel_pid " to runqueue %" PRIu8 ".\n",
DEBUG("sched_set_status: removing thread %" PRIkernel_pid " from runqueue %" PRIu8 ".\n",
process->pid, process->priority);
clist_lpop(&sched_runqueues[process->priority]);