mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Fixed a format specifier.
This commit is contained in:
parent
a58c308427
commit
f88f3b56f5
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ function precompile_pcap_filter%(id: PcapFilterID, s: string%): bool
|
||||||
// We use a vector as underlying data structure for fast
|
// We use a vector as underlying data structure for fast
|
||||||
// lookups and limit the ID space so that that doesn't grow too
|
// lookups and limit the ID space so that that doesn't grow too
|
||||||
// large.
|
// large.
|
||||||
builtin_error(fmt("PCAP filter ids must remain below 100 (is %ld)", id->AsInt()));
|
builtin_error(fmt("PCAP filter ids must remain below 100 (is %" PRId64 ")", id->AsInt()));
|
||||||
return new Val(false, TYPE_BOOL);
|
return new Val(false, TYPE_BOOL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue