2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

%zu is not universally available

This commit is contained in:
Mark Andrews
2014-11-19 12:10:06 +11:00
parent d6984fd680
commit f9ee67d9ce

View File

@@ -79,7 +79,7 @@ main(int argc, char **argv)
ret = EXIT_SUCCESS;
out:
printf("%zu\n", length);
printf("%lu\n", (unsigned long)length);
if (fd != -1)
close(fd);