This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 2/2] timespec: Add missing EOL terminators


The original implementations of test_timespec_before_impl and
test_timespec_equal_or_after in 519839965197291924895a3988804e325035beee
were missing the backslash required for a newline.

* support/timespec.c: Add backslash to correct newline in failure message.
---
 ChangeLog          | 5 +++++
 support/timespec.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f870deca1a..33925ec898 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-05-16  Mike Crowe  <mac@mcrowe.com>
+
+	* support/timespec.c: Add backslash to correct newline in failure
+	message.
+
 2019-05-16  Mike Crowe  <mac@mcrowe.com>
 
 	* support/timespec.h: Correct confusing comment.
diff --git a/support/timespec.c b/support/timespec.c
index 653293970a..7c1a4e5389 100644
--- a/support/timespec.c
+++ b/support/timespec.c
@@ -31,7 +31,7 @@ test_timespec_before_impl (const char *file, int line,
     support_record_failure ();
     const struct timespec diff = timespec_sub (left, right);
     printf ("%s:%d: %jd.%09jds not before %jd.%09jds "
-	    "(difference %jd.%09jds)n",
+	    "(difference %jd.%09jds)\n",
 	    file, line,
 	    (intmax_t) left.tv_sec, (intmax_t) left.tv_nsec,
 	    (intmax_t) right.tv_sec, (intmax_t) right.tv_nsec,
@@ -50,7 +50,7 @@ test_timespec_equal_or_after_impl (const char *file, int line,
     support_record_failure ();
     const struct timespec diff = timespec_sub (right, left);
     printf ("%s:%d: %jd.%09jds not after %jd.%09jds "
-	    "(difference %jd.%09jds)n",
+	    "(difference %jd.%09jds)\n",
 	    file, line,
 	    (intmax_t) left.tv_sec, (intmax_t) left.tv_nsec,
 	    (intmax_t) right.tv_sec, (intmax_t) right.tv_nsec,
-- 
2.20.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]