From: Mike Crowe Date: Mon, 20 May 2019 17:56:48 +0000 (-0300) Subject: support: Add missing EOL terminators on timespec X-Git-Tag: glibc-2.30~142 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b62bb3bc683ab1ca5f69631f0b588a406370d5dc;p=thirdparty%2Fglibc.git 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 --- diff --git a/ChangeLog b/ChangeLog index 323e3f5e2b6..35e694afad5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2019-05-20 Mike Crowe + * support/timespec.c: Add backslash to correct newline in failure + message. + * support/timespec.h: Correct confusing comment. 2019-05-20 Adhemerval Zanella diff --git a/support/timespec.c b/support/timespec.c index 653293970ad..7c1a4e5389a 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,