From patchwork Thu May 16 12:20:26 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Crowe X-Patchwork-Id: 32705 Received: (qmail 14286 invoked by alias); 16 May 2019 12:20:37 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 14217 invoked by uid 89); 16 May 2019 12:20:37 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 spammy=H*r:smtp, H*r:4.89, Mike, HContent-Transfer-Encoding:8bit X-HELO: avasout02.plus.net X-CM-Score: 0.00 From: Mike Crowe To: libc-alpha@sourceware.org Cc: Mike Crowe Subject: [PATCH 2/2] timespec: Add missing EOL terminators Date: Thu, 16 May 2019 13:20:26 +0100 Message-Id: <20190516122026.14205-2-mac@mcrowe.com> In-Reply-To: <20190516122026.14205-1-mac@mcrowe.com> References: <20190516122026.14205-1-mac@mcrowe.com> MIME-Version: 1.0 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 + + * support/timespec.c: Add backslash to correct newline in failure + message. + 2019-05-16 Mike Crowe * 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,