Fixing compiler warning.

This commit is contained in:
Robin Sommer 2015-07-21 08:35:17 -07:00
parent 358f3bfe84
commit e4c6779a67
3 changed files with 9 additions and 3 deletions

View file

@ -55,7 +55,7 @@ refine connection SSL_Conn += {
if ( length > MAX_DTLS_HANDSHAKE_RECORD )
{
bro_analyzer()->ProtocolViolation(fmt("DTLS record length %lld larger than allowed maximum.", length));
bro_analyzer()->ProtocolViolation(fmt("DTLS record length %" PRId64 " larger than allowed maximum.", length));
return true;
}