Merge pull request #3773 from ErnestChen1/event_option0717
[modify] if ... else if constructs to be terminated with an else clau…
This commit is contained in:
commit
c0d78d4f88
|
@ -1089,6 +1089,13 @@ rt_err_t rt_event_send(rt_event_t event, rt_uint32_t set)
|
||||||
status = RT_EOK;
|
status = RT_EOK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* enable interrupt */
|
||||||
|
rt_hw_interrupt_enable(level);
|
||||||
|
|
||||||
|
return -RT_EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
/* move node to the next */
|
/* move node to the next */
|
||||||
n = n->next;
|
n = n->next;
|
||||||
|
|
Loading…
Reference in New Issue