You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by as...@apache.org on 2018/04/10 20:11:11 UTC

qpid-proton git commit: PROTON-1809: Fix bad C as C++ code - C++11 Compiler interprets "blah"PN_ZU as a literal suffix

Repository: qpid-proton
Updated Branches:
  refs/heads/master 9bb2ae5fd -> 0772e2ec1


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/master
Commit: 0772e2ec194f737ebd18dfec22ecd445e0963e0e
Parents: 9bb2ae5
Author: Andrew Stitcher <as...@apache.org>
Authored: Tue Apr 10 16:09:30 2018 -0400
Committer: Andrew Stitcher <as...@apache.org>
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