summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2013-09-21 09:11:49 -0700
committerJim Meyering <meyering@fb.com>2013-09-23 10:28:53 -0700
commitaa20227c9f103f44a2a05229aa1bdbd41d387d1e (patch)
treeb5a9591720711edeae8261b45a7ea093d484b205 /lib
parentcf70364d5980d76c189ce841b5283f5644a017de (diff)
downloadgnulib-aa20227c9f103f44a2a05229aa1bdbd41d387d1e.tar.gz
timespec: use the new TIMESPEC_RESOLUTION in a few more places
* lib/timespec-add.c (timespec_add): Also replace 999999999 with TIMESPEC_RESOLUTION - 1. * lib/timespec-sub.c (timespec_sub): Likewise.
Diffstat (limited to 'lib')
-rw-r--r--lib/timespec-add.c4
-rw-r--r--lib/timespec-sub.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/timespec-add.c b/lib/timespec-add.c
index 51323a6320..d628237fe5 100644
--- a/lib/timespec-add.c
+++ b/lib/timespec-add.c
@@ -18,7 +18,7 @@
/* Written by Paul Eggert. */
/* Return the sum of two timespec values A and B. On overflow, return
- an extremal value. This assumes 0 <= tv_nsec <= 999999999. */
+ an extremal value. This assumes 0 <= tv_nsec < TIMESPEC_RESOLUTION. */
#include <config.h>
#include "timespec.h"
@@ -58,7 +58,7 @@ timespec_add (struct timespec a, struct timespec b)
{
high_overflow:
rs = TYPE_MAXIMUM (time_t);
- rns = 999999999;
+ rns = TIMESPEC_RESOLUTION - 1;
}
}
else
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