binpac: Fix a printf format specifier

This commit is contained in:
Jon Siwek 2019-07-01 10:33:44 -07:00 committed by Tim Wojtulewicz
parent 219dbd0fa3
commit 7632c69566

View file

@ -118,7 +118,7 @@ void FlowBuffer::ExpandBuffer(int length)
if ( length > policy.max_capacity )
{
std::string reason = strfmt("expand past max capacity %d/%zu",
std::string reason = strfmt("expand past max capacity %d/%d",
length, policy.max_capacity);
throw ExceptionFlowBufferAlloc(reason.c_str());
}