1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 09:59:04 +00:00

Fix a warning about printf parameter width

This commit is contained in:
dmiller
2024-11-18 20:26:29 +00:00
parent b1f6f9b088
commit 4aa83a7fc1

View File

@@ -334,7 +334,7 @@ int ncat_listen()
logdebug("select returned %d fds ready\n", fds_ready);
if (fds_ready == 0)
bye("Idle timeout expired (%d ms).", usec_wait / 1000);
bye("Idle timeout expired (%ld ms).", usec_wait / 1000);
/* If client_fdlist.state increases, the list has changed and we
* need to go over it again. */