From 06559048e76343211618ddea02d6739ca578b775 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Wed, 29 Nov 2023 13:17:10 +0100 Subject: treewide: Use 'z' length modifier for size_t/ssize_t conversions Types size_t and ssize_t are not necessarily long, it depends on the architecture. Signed-off-by: Stefano Brivio Reviewed-by: David Gibson --- pcap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pcap.c') diff --git a/pcap.c b/pcap.c index 524612a..501d52d 100644 --- a/pcap.c +++ b/pcap.c @@ -101,7 +101,7 @@ void pcap(const char *pkt, size_t len) gettimeofday(&tv, NULL); if (pcap_frame(pkt, len, &tv) != 0) - debug("Cannot log packet, length %lu", len); + debug("Cannot log packet, length %zu", len); } /** @@ -123,7 +123,7 @@ void pcap_multiple(const struct iovec *iov, unsigned int n, size_t offset) for (i = 0; i < n; i++) { if (pcap_frame((char *)iov[i].iov_base + offset, iov[i].iov_len - offset, &tv) != 0) { - debug("Cannot log packet, length %lu", + debug("Cannot log packet, length %zu", iov->iov_len - offset); return; } -- cgit v1.2.3