summaryrefslogtreecommitdiff
path: root/lib/timespec-sub.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/timespec-sub.c')
-rw-r--r--lib/timespec-sub.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/timespec-sub.c b/lib/timespec-sub.c
index b164a8380d..3f3adea28d 100644
--- a/lib/timespec-sub.c
+++ b/lib/timespec-sub.c
@@ -18,8 +18,8 @@
/* Written by Paul Eggert. */
/* Return the difference between two timespec values A and B. On
- overflow, return an extremal value. This assumes 0 <= tv_nsec <=
- 999999999. */
+ overflow, return an extremal value. This assumes 0 <= tv_nsec <
+ TIMESPEC_RESOLUTION. */
#include <config.h>
#include "timespec.h"
@@ -58,7 +58,7 @@ timespec_sub (struct timespec a, struct timespec b)
else
{
rs = TYPE_MAXIMUM (time_t);
- rns = 999999999;
+ rns = TIMESPEC_RESOLUTION - 1;
}
}
else