aboutsummaryrefslogtreecommitdiff
path: root/include/apos/timer.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-06-09 23:53:47 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-06-09 23:53:47 +0300
commit45b51617a0e3513a453c20229e02fd8fc9fbbfe1 (patch)
tree1ff6e23aea786c2b32521bb834e1fc133129101b /include/apos/timer.h
parentda8eeb7695a4803d1d45c8c26c05a51fb1ba1e55 (diff)
downloadkmi-45b51617a0e3513a453c20229e02fd8fc9fbbfe1.tar.gz
kmi-45b51617a0e3513a453c20229e02fd8fc9fbbfe1.zip
use doxygen todo
Diffstat (limited to 'include/apos/timer.h')
-rw-r--r--include/apos/timer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apos/timer.h b/include/apos/timer.h
index 98d9f36..de6141e 100644
--- a/include/apos/timer.h
+++ b/include/apos/timer.h
@@ -126,7 +126,7 @@ static inline ticks_t msecs_to_ticks(tunit_t msecs)
*/
static inline ticks_t secs_to_ticks(tunit_t secs)
{
- /* \todo: likely not a problem on 64bit systems, not sure how to handle situation on
+ /** \todo likely not a problem on 64bit systems, not sure how to handle situation on
* 32bit */
return msecs_to_ticks(secs * 1000);
}