From commits-return-46046-archive-asf-public=cust-asf.ponee.io@qpid.apache.org Wed Jul 4 00:13:07 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 700F11807A6 for ; Wed, 4 Jul 2018 00:13:04 +0200 (CEST) Received: (qmail 66400 invoked by uid 500); 3 Jul 2018 22:12:56 -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 63056 invoked by uid 99); 3 Jul 2018 22:12:52 -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, 03 Jul 2018 22:12:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6B192E11C0; Tue, 3 Jul 2018 22:12:51 +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, 03 Jul 2018 22:13:47 -0000 Message-Id: <3d337471e24f4701be16c8dc44853fc6@git.apache.org> In-Reply-To: <506ba33a6fed44e08b20ccd012e637c7@git.apache.org> References: <506ba33a6fed44e08b20ccd012e637c7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [58/89] [abbrv] qpid-proton git commit: PROTON-1809: Fix bad C as C++ code - C++11 Compiler interprets "blah"PN_ZU as a literal suffix PROTON-1809: Fix bad C as C++ code - C++11 Compiler interprets "blah"PN_ZU as a literal suffix Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/0772e2ec Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/0772e2ec Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/0772e2ec Branch: refs/heads/go1 Commit: 0772e2ec194f737ebd18dfec22ecd445e0963e0e Parents: 9bb2ae5 Author: Andrew Stitcher Authored: Tue Apr 10 16:09:30 2018 -0400 Committer: Andrew Stitcher Committed: Tue Apr 10 16:09:30 2018 -0400 ---------------------------------------------------------------------- c/src/core/transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0772e2ec/c/src/core/transport.c ---------------------------------------------------------------------- diff --git a/c/src/core/transport.c b/c/src/core/transport.c index 1a05261..75201a0 100644 --- a/c/src/core/transport.c +++ b/c/src/core/transport.c @@ -1904,7 +1904,7 @@ static size_t pni_session_incoming_window(pn_session_t *ssn) pn_condition_format( pn_transport_condition(t), "amqp:internal-error", - "session capacity %"PN_ZU" is less than frame size %"PN_ZU, + "session capacity %" PN_ZU " is less than frame size %" PN_ZU, capacity, size); pn_transport_close_tail(t); return 0; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org