mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 04:32:04 -04:00
Merge branch 'ondrej/use-%zu-for-sizeof-formatting' into 'master'
lib/dns/ssu_external.c: Use %zu for formatting sizeof() output See merge request isc-projects/bind9!2415
This commit is contained in:
commit
7b554b0e46
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