NO-JIRA: [c] fix incorrect printf, causing problems on some builds

Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/a80d54e6
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/a80d54e6
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/a80d54e6

Branch: refs/heads/go1
Commit: a80d54e624c6480f65d5da52239f9c2bcf4457c6
Parents: 99564eb
Author: Alan Conway <acon...@redhat.com>
Authored: Fri Apr 13 15:36:37 2018 -0400
Committer: Alan Conway <acon...@redhat.com>
Committed: Fri Apr 13 15:44:37 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/a80d54e6/c/src/core/transport.c
----------------------------------------------------------------------
diff --git a/c/src/core/transport.c b/c/src/core/transport.c
index 75201a0..013712a 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 %" PRIu32,
       capacity, size);
     pn_transport_close_tail(t);
     return 0;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to