Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 3A12A200C3D for ; Tue, 28 Feb 2017 01:47:19 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 38A89160B80; Tue, 28 Feb 2017 00:47:19 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A680A160B6C for ; Tue, 28 Feb 2017 01:47:18 +0100 (CET) Received: (qmail 90995 invoked by uid 500); 28 Feb 2017 00:47:17 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 90980 invoked by uid 99); 28 Feb 2017 00:47:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2017 00:47:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B7599DFE20; Tue, 28 Feb 2017 00:47:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aconway@apache.org To: commits@qpid.apache.org Date: Tue, 28 Feb 2017 00:47:18 -0000 Message-Id: <89366914bb5146efaf8a0212017ef082@git.apache.org> In-Reply-To: <42fce1427f2040188915fc0e29e11c53@git.apache.org> References: <42fce1427f2040188915fc0e29e11c53@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/4] qpid-proton git commit: PROTON-1418: pn_vlogf missing newline after log. archived-at: Tue, 28 Feb 2017 00:47:19 -0000 PROTON-1418: pn_vlogf missing newline after log. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/4417e356 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/4417e356 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/4417e356 Branch: refs/heads/master Commit: 4417e3566b80cdde992b0a32491892a4c736f2bd Parents: 0e81224 Author: Alan Conway Authored: Mon Feb 27 16:22:20 2017 -0500 Committer: Alan Conway Committed: Mon Feb 27 19:45:13 2017 -0500 ---------------------------------------------------------------------- proton-c/src/core/log.c | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/4417e356/proton-c/src/core/log.c ---------------------------------------------------------------------- diff --git a/proton-c/src/core/log.c b/proton-c/src/core/log.c index 60c72e7..db83e7e 100644 --- a/proton-c/src/core/log.c +++ b/proton-c/src/core/log.c @@ -50,6 +50,7 @@ void pn_log_logger(pn_logger_t new_logger) { void pn_vlogf_impl(const char *fmt, va_list ap) { vfprintf(stderr, fmt, ap); + fprintf(stderr, "\n"); } /**@internal --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org