Removed unnecessary cast.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1165 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
0ea5ea8910
commit
db46ee952b
|
@ -156,7 +156,7 @@ void PendSVVector(void) {
|
|||
PUSH_CONTEXT(sp_thd);
|
||||
|
||||
(otp = currp)->p_ctx.r13 = sp_thd;
|
||||
(currp = fifo_remove((void *)&rlist.r_queue))->p_state = PRCURR;
|
||||
(currp = fifo_remove(&rlist.r_queue))->p_state = PRCURR;
|
||||
chSchReadyI(otp);
|
||||
#if CH_USE_ROUNDROBIN
|
||||
/* set the round-robin time quantum */
|
||||
|
|
Loading…
Reference in New Issue