mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
binpac: Fix a printf format specifier
This commit is contained in:
parent
219dbd0fa3
commit
7632c69566
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ void FlowBuffer::ExpandBuffer(int length)
|
||||||
|
|
||||||
if ( length > policy.max_capacity )
|
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);
|
length, policy.max_capacity);
|
||||||
throw ExceptionFlowBufferAlloc(reason.c_str());
|
throw ExceptionFlowBufferAlloc(reason.c_str());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue