summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/nsutils/time.h2
-rw-r--r--src/time.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/nsutils/time.h b/include/nsutils/time.h
index bfc9490..93a4c1d 100644
--- a/include/nsutils/time.h
+++ b/include/nsutils/time.h
@@ -26,6 +26,6 @@
* \param current The current value of the counter.
* \return NSERROR_OK on success else error code.
*/
-nsuerror nsu_nsu_getmonotonic_ms(uint64_t *current);
+nsuerror nsu_getmonotonic_ms(uint64_t *current);
#endif
diff --git a/src/time.c b/src/time.c
index 2b83f3f..b29c2eb 100644
--- a/src/time.c
+++ b/src/time.c
@@ -19,7 +19,7 @@
#include "nsutils/time.h"
/* exported interface documented in nsutils/time.h */
-nsuerror nsu_nsu_getmonotonic_ms(uint64_t *current)
+nsuerror nsu_getmonotonic_ms(uint64_t *current)
{
/** \todo Implement this properly! */
struct timeval tv;