mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-18 11:53:05 +08:00
[src][timer.c]:modify -RT_EOK to RT_EOK
This commit is contained in:
+3
-3
@@ -220,7 +220,7 @@ rt_err_t rt_timer_detach(rt_timer_t timer)
|
||||
|
||||
rt_object_detach((rt_object_t)timer);
|
||||
|
||||
return -RT_EOK;
|
||||
return RT_EOK;
|
||||
}
|
||||
RTM_EXPORT(rt_timer_detach);
|
||||
|
||||
@@ -283,7 +283,7 @@ rt_err_t rt_timer_delete(rt_timer_t timer)
|
||||
|
||||
rt_object_delete((rt_object_t)timer);
|
||||
|
||||
return -RT_EOK;
|
||||
return RT_EOK;
|
||||
}
|
||||
RTM_EXPORT(rt_timer_delete);
|
||||
#endif
|
||||
@@ -410,7 +410,7 @@ rt_err_t rt_timer_start(rt_timer_t timer)
|
||||
}
|
||||
#endif
|
||||
|
||||
return -RT_EOK;
|
||||
return RT_EOK;
|
||||
}
|
||||
RTM_EXPORT(rt_timer_start);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user