diff options
| author | Reuben Dowle <reuben.dowle@4rf.com> | 2021-02-26 12:00:24 +1300 |
|---|---|---|
| committer | Reuben Dowle <reuben.dowle@4rf.com> | 2021-04-06 09:22:59 +1200 |
| commit | 4f7a37ace33f0b8d9e8edb9162831bea8745fba2 (patch) | |
| tree | 4432e2bde38e568f679e7385380fdd3b9a29d086 | |
| parent | 78980c2854ee39c23643af36a9e8af3b85df74a4 (diff) | |
nhrpd: Use correct printf format specifier
Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com>
| -rwxr-xr-x | nhrpd/nhrp_multicast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_multicast.c b/nhrpd/nhrp_multicast.c index 6feab210c9..2f9665ab88 100755 --- a/nhrpd/nhrp_multicast.c +++ b/nhrpd/nhrp_multicast.c @@ -50,7 +50,7 @@ static void nhrp_multicast_send(struct nhrp_peer *p, struct zbuf *zb) sockunion_get_addr(&p->vc->remote.nbma), addrlen, addrlen == 4 ? 0x0800 : 0x86DD); - debugf(NHRP_DEBUG_COMMON, "Multicast Packet: %s -> %s, ret = %d, size = %d, addrlen = %d", + debugf(NHRP_DEBUG_COMMON, "Multicast Packet: %s -> %s, ret = %d, size = %zu, addrlen = %zu", sockunion2str(&p->vc->local.nbma, buf[0], sizeof(buf[0])), sockunion2str(&p->vc->remote.nbma, buf[1], sizeof(buf[1])), ret, zbuf_used(zb), addrlen); |
