Fix an syntax error in a debug asserion

This commit is contained in:
Gregory Nutt 2015-07-24 13:02:19 -06:00
parent 12cdd2a8fe
commit 411941d8cd
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ uint32_t sched_roundrobin_process(FAR struct tcb_s *tcb, uint32_t ticks,
* if there ever were the case.
*/
DEBUGASSERT(tcb != NULL l&& ticks <= tcb->timeslice);
DEBUGASSERT(tcb != NULL && ticks <= tcb->timeslice);
decr = MIN(tcb->timeslice, ticks);
/* Decrement the timeslice counter */