diff options
Diffstat (limited to 'src/lib/time/tvdiff.c')
-rw-r--r-- | src/lib/time/tvdiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/time/tvdiff.c b/src/lib/time/tvdiff.c index cbad5a48b8..14a89bc76e 100644 --- a/src/lib/time/tvdiff.c +++ b/src/lib/time/tvdiff.c @@ -30,7 +30,7 @@ tv_secdiff_impl(const struct timeval *start, const struct timeval *end) const int64_t s = (int64_t)start->tv_sec; const int64_t e = (int64_t)end->tv_sec; - /* This may not be the most efficient way of implemeting this check, + /* This may not be the most efficient way of implementing this check, * but it's easy to see that it's correct and doesn't overflow */ if (s > 0 && e < INT64_MIN + s) { |