summaryrefslogtreecommitdiff
path: root/src/helper/jim.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/jim.c')
-rw-r--r--src/helper/jim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/jim.c b/src/helper/jim.c
index da0f0180..7d5cc2ba 100644
--- a/src/helper/jim.c
+++ b/src/helper/jim.c
@@ -12076,7 +12076,7 @@ jim_get_s_us( jim_wide *s, jim_wide *us )
tmpres |= ft.dwLowDateTime;
/* convert to unix representation */
tmpres /= 10;
- tmpres -= DELTA_EPOC_IN_MICROSECS;
+ tmpres -= DELTA_EPOCH_IN_MICROSECS;
*s = (tmpres / 1000000ULL);
*us = (tmpres % 1000000ULL);