summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/dhcpv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dhcpv6.c b/src/dhcpv6.c
index 00628cd..225f961 100644
--- a/src/dhcpv6.c
+++ b/src/dhcpv6.c
@@ -253,7 +253,7 @@ static int send_reply(_unused const void *buf, size_t len,
struct dhcpv4_msg_data *reply = opaque;
if (len > reply->maxsize) {
- syslog(LOG_ERR, "4o6: reply too large, %u > %u", len, reply->maxsize);
+ syslog(LOG_ERR, "4o6: reply too large, %zu > %zu", len, reply->maxsize);
reply->len = -1;
} else {
memcpy(reply->msg, buf, len);