mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
lib/dns/ssu_external.c: Use %zu for formatting sizeof() output
This commit is contained in:
parent
e7f0a252a1
commit
395741f9ad
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue