diff mbox series

[2/2] timespec: Add missing EOL terminators

Message ID 20190516122026.14205-2-mac@mcrowe.com
State New
Headers show
Series [1/2] support/timespec.h: Correct confusing comment | expand

Commit Message

Mike Crowe May 16, 2019, 12:20 p.m. UTC
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(-)

Comments

Adhemerval Zanella Netto May 20, 2019, 6:42 p.m. UTC | #1
On 16/05/2019 09:20, Mike Crowe wrote:
> 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.

LTGM, I pushed for you.

> ---
>  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,
>
diff mbox series

Patch

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,