Removed unnecessary cast.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1165 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2009-09-13 15:39:19 +00:00
parent 0ea5ea8910
commit db46ee952b
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ void PendSVVector(void) {
PUSH_CONTEXT(sp_thd); PUSH_CONTEXT(sp_thd);
(otp = currp)->p_ctx.r13 = 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); chSchReadyI(otp);
#if CH_USE_ROUNDROBIN #if CH_USE_ROUNDROBIN
/* set the round-robin time quantum */ /* set the round-robin time quantum */