This is the mail archive of the glibc-cvs@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]

[glibc] support: Add missing EOL terminators on timespec


https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b62bb3bc683ab1ca5f69631f0b588a406370d5dc

commit b62bb3bc683ab1ca5f69631f0b588a406370d5dc
Author: Mike Crowe <mac@mcrowe.com>
Date:   Mon May 20 14:56:48 2019 -0300

    support: Add missing EOL terminators on timespec
    
    The original implementations of test_timespec_before_impl and
    test_timespec_equal_or_after in 519839965197291924895a3988804e325035beee
    were missing the backslash required for a newline.
    
    Checked on x86_64-linux-gnu.
    
    	* support/timespec.c: Add backslash to correct newline in failure
    	message.
    
    Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>

Diff:
---
 ChangeLog          | 3 +++
 support/timespec.c | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 323e3f5..35e694a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2019-05-20  Mike Crowe  <mac@mcrowe.com>
 
+	* support/timespec.c: Add backslash to correct newline in failure
+	message.
+
 	* support/timespec.h: Correct confusing comment.
 
 2019-05-20  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
diff --git a/support/timespec.c b/support/timespec.c
index 6532939..7c1a4e5 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,


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