Skip to content
Snippets Groups Projects
Commit 411941d8 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Fix an syntax error in a debug asserion

parent 12cdd2a8
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment