From: Mike Crowe Date: Mon, 20 May 2019 17:55:33 +0000 (-0300) Subject: support: Correct confusing comment X-Git-Tag: glibc-2.30~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff6bec7d47b228f4ab2115676a6b7cde5542fa9d;p=thirdparty%2Fglibc.git support: Correct confusing comment * support/timespec.h: Correct confusing comment. Reviewed-by: Adhemerval Zanella --- diff --git a/ChangeLog b/ChangeLog index a4c0ec0378f..323e3f5e2b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-05-20 Mike Crowe + + * support/timespec.h: Correct confusing comment. + 2019-05-20 Adhemerval Zanella * sysdeps/unix/sysv/linux/ipc_priv.h (SEMTIMEDOP_IPC_ARGS): New diff --git a/support/timespec.h b/support/timespec.h index 4a8b341c5a2..e9f466b3d15 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)