summaryrefslogtreecommitdiffstats
path: root/ffd/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'ffd/util.h')
-rw-r--r--ffd/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffd/util.h b/ffd/util.h
index cf29311..9d481cb 100644
--- a/ffd/util.h
+++ b/ffd/util.h
@@ -53,9 +53,9 @@ static inline bool are_eth_addrs_equal(const eth_addr_t *address1, const eth_add
return (a[0]==b[0] && a[1]==b[1] && a[2]==b[2] && a[3]==b[3] && a[4]==b[4] && a[5]==b[5]);
}
-/* returns (tp1 - tp2) in milliseconds */
+/* returns (tp1 - tp2) in centiseconds */
static inline int timespec_diff(const struct timespec *tp1, const struct timespec *tp2) {
- return ((tp1->tv_sec - tp2->tv_sec))*1000 + (tp1->tv_nsec - tp2->tv_nsec)/1e6;
+ return ((tp1->tv_sec - tp2->tv_sec))*100 + (tp1->tv_nsec - tp2->tv_nsec)/1e7;
}
static inline int max(int a, int b) {