diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-06 22:39:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-06 22:39:57 +0000 |
commit | 3854c5ddf4eb267e4e53796eaa1051421dcb4e08 (patch) | |
tree | 7110eecec665bc64fefcdedaa29eb2e2fdf2df41 /networking | |
parent | 70e8f49f71b824bbc7c5ec825eb33108134d1ee5 (diff) | |
download | busybox-3854c5ddf4eb267e4e53796eaa1051421dcb4e08.tar.gz |
runsvdir: alternative methon of supporting runsvdir-as-init. +66 bytes.
*: s/int/pid_t where appropriate
Diffstat (limited to 'networking')
-rw-r--r-- | networking/tcpudp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index d6731198c..0d8217e02 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c @@ -147,7 +147,7 @@ static void connection_status(void) static void sig_child_handler(int sig UNUSED_PARAM) { int wstat; - int pid; + pid_t pid; while ((pid = wait_any_nohang(&wstat)) > 0) { if (max_per_host) |