diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-29 16:45:45 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-29 16:45:45 +0100 |
commit | 327f550669a80d72f36bc9e4de619c163aa46eff (patch) | |
tree | d304092aeb06539085be1385ab9298876c414b44 /networking/pscan.c | |
parent | 9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1 (diff) | |
download | busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.tar.gz busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.tar.bz2 busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.zip |
Use unsigned printf/scanf conversion where more appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/pscan.c')
-rw-r--r-- | networking/pscan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/pscan.c b/networking/pscan.c index 28005ad57..72ed8cdb5 100644 --- a/networking/pscan.c +++ b/networking/pscan.c | |||
@@ -157,7 +157,7 @@ int pscan_main(int argc UNUSED_PARAM, char **argv) | |||
157 | } | 157 | } |
158 | if (ENABLE_FEATURE_CLEAN_UP) free(lsap); | 158 | if (ENABLE_FEATURE_CLEAN_UP) free(lsap); |
159 | 159 | ||
160 | printf("%d closed, %d open, %d timed out (or blocked) ports\n", | 160 | printf("%u closed, %u open, %u timed out (or blocked) ports\n", |
161 | closed_ports, | 161 | closed_ports, |
162 | open_ports, | 162 | open_ports, |
163 | nports - (closed_ports + open_ports)); | 163 | nports - (closed_ports + open_ports)); |