szaszm commented on a change in pull request #744: MINIFICPP-1171 - Fix "%ll"
format strings in log lines
URL: https://github.com/apache/nifi-minifi-cpp/pull/744#discussion_r387652866
##########
File path: libminifi/src/core/ProcessSession.cpp
##########
@@ -184,7 +184,7 @@ std::shared_ptr<core::FlowFile>
ProcessSession::clone(const std::shared_ptr<core
if (parent->getResourceClaim()) {
if ((uint64_t) (offset + size) > parent->getSize()) {
// Set offset and size
- logger_->log_error("clone offset %ll and size %ll exceed parent size
%llu", offset, size, parent->getSize());
+ logger_->log_error("clone offset %lld and size %lld exceed parent size
%llu", offset, size, parent->getSize());
Review comment:
fixed by da22085
----------------------------------------------------------------
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