From 5470716c0d36351175407aa833c86495195569b8 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 26 Nov 2014 17:25:20 +0000 Subject: fix monotonic timer API naming --- include/nsutils/time.h | 2 +- src/time.c | 2 +- 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; -- cgit v1.2.3