Fixed a format specifier.

This commit is contained in:
Seth Hall 2016-01-16 23:44:05 -05:00
parent a58c308427
commit f88f3b56f5

View file

@ -26,7 +26,7 @@ function precompile_pcap_filter%(id: PcapFilterID, s: string%): bool
// We use a vector as underlying data structure for fast
// lookups and limit the ID space so that that doesn't grow too
// 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);
}