2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

lib/dns/ssu_external.c: Use %zu for formatting sizeof() output

This commit is contained in:
Ondřej Surý 2019-09-30 15:52:50 +02:00
parent e7f0a252a1
commit 395741f9ad

View File

@ -68,7 +68,7 @@ ux_socket_connect(const char *path) {
if (strlen(path) > sizeof(addr.sun_path)) {
ssu_e_log(3, "ssu_external: socket path '%s' "
"longer than system maximum %u",
"longer than system maximum %zu",
path, sizeof(addr.sun_path));
return (-1);
}