From 4a43d3cdae1b731dcf51d3531048c51fd4142516 Mon Sep 17 00:00:00 2001 From: yangjie Date: Thu, 23 Aug 2018 15:57:45 +0800 Subject: [PATCH] [src][timer.c]:modify -RT_EOK to RT_EOK --- src/timer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/timer.c b/src/timer.c index 8354d43a4..042826f41 100644 --- a/src/timer.c +++ b/src/timer.c @@ -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);