summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/time.c b/src/time.c
index 5ea1d3f..736c982 100644
--- a/src/time.c
+++ b/src/time.c
@@ -69,8 +69,8 @@ nsuerror nsu_getmonotonic_ms(uint64_t *current_out)
*current_out = current;
prev = current;
} else {
- /** \todo is 10ms really correct or can we calculate a delta going forwards? */
- prev += 10;
+ /** \todo is 1ms really correct or can we calculate a delta going forwards? */
+ prev += 1;
*current_out = prev;
}
return NSUERROR_OK;