mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 01:39:44 +08:00
Fix an syntax error in a debug asserion
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user