astitcher commented on a change in pull request #185: PROTON-2079: Fix usage of
formatting placeholders in printfs
URL: https://github.com/apache/qpid-proton/pull/185#discussion_r306539270
##########
File path: c/tools/msgr-send.c
##########
@@ -289,7 +289,7 @@ int main(int argc, char** argv)
check_messenger(messenger);
}
- LOG("Messages received=%llu sent=%llu\n", received, sent);
+ LOG("Messages received=%" PRIu64 " sent=%" PRIu64 "\n", received, sent);
Review comment:
True, but is that header included? It's internal to proton and (I think)
this is code that only uses the exposed proton API (albeit the old messenger
API.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]