diff options
author | Mike Crowe <mac@mcrowe.com> | 2019-05-20 14:55:33 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-05-20 15:05:35 -0300 |
commit | ff6bec7d47b228f4ab2115676a6b7cde5542fa9d (patch) | |
tree | c318e482754e98d9090563ccfbcbe68152b5332b | |
parent | 236c18e5683028d41c2721a8b1ec45c56c953d95 (diff) | |
download | glibc-ff6bec7d47b228f4ab2115676a6b7cde5542fa9d.zip glibc-ff6bec7d47b228f4ab2115676a6b7cde5542fa9d.tar.gz glibc-ff6bec7d47b228f4ab2115676a6b7cde5542fa9d.tar.bz2 |
support: Correct confusing comment
* support/timespec.h: Correct confusing comment.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | support/timespec.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2019-05-20 Mike Crowe <mac@mcrowe.com> + + * support/timespec.h: Correct confusing comment. + 2019-05-20 Adhemerval Zanella <adhemerval.zanella@linaro.org> * sysdeps/unix/sysv/linux/ipc_priv.h (SEMTIMEDOP_IPC_ARGS): New diff --git a/support/timespec.h b/support/timespec.h index 4a8b341..e9f466b 100644 --- a/support/timespec.h +++ b/support/timespec.h @@ -62,8 +62,8 @@ void test_timespec_equal_or_after_impl (const char *file, int line, errno = saved_errno; \ }) -/* Check that the timespec on the left represents a after before the - time on the right. */ +/* Check that the timespec on the left represents a time equal to or + after the time on the right. */ #define TEST_TIMESPEC_EQUAL_OR_AFTER(left, right) \ test_timespec_equal_or_after_impl (__FILE__, __LINE__, left, right) |