bfdd: fix size_t format string

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
David Lamparter 2023-01-27 11:14:35 +01:00
parent 0e4e879b40
commit d131cca998
1 changed files with 1 additions and 1 deletions

View File

@ -845,7 +845,7 @@ void bfd_recv_cb(struct thread *t)
/* Implement RFC 5880 6.8.6 */
if (mlen < BFD_PKT_LEN) {
cp_debug(is_mhop, &peer, &local, ifindex, vrfid,
"too small (%ld bytes)", mlen);
"too small (%zd bytes)", mlen);
return;
}