[add] switch default clause

This commit is contained in:
chenchaoqun 2020-07-27 11:49:52 +08:00
parent e6b72153b4
commit 55cfefd90a
2 changed files with 7 additions and 1 deletions

View File

@ -117,6 +117,9 @@ rt_inline rt_err_t rt_ipc_list_suspend(rt_list_t *list,
rt_list_insert_before(list, &(thread->tlist));
}
break;
default:
break;
}
return RT_EOK;

View File

@ -500,7 +500,10 @@ rt_err_t rt_timer_control(rt_timer_t timer, int cmd, void *arg)
/*timer is stop*/
*(rt_tick_t *)arg = RT_TIMER_FLAG_DEACTIVATED;
}
break;
break;
default:
break;
}
return RT_EOK;