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/tcpudp.c | |
parent | 70e8f49f71b824bbc7c5ec825eb33108134d1ee5 (diff) | |
download | busybox-w32-3854c5ddf4eb267e4e53796eaa1051421dcb4e08.tar.gz busybox-w32-3854c5ddf4eb267e4e53796eaa1051421dcb4e08.tar.bz2 busybox-w32-3854c5ddf4eb267e4e53796eaa1051421dcb4e08.zip |
runsvdir: alternative methon of supporting runsvdir-as-init. +66 bytes.
*: s/int/pid_t where appropriate
Diffstat (limited to 'networking/tcpudp.c')
-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) | |||
147 | static void sig_child_handler(int sig UNUSED_PARAM) | 147 | static void sig_child_handler(int sig UNUSED_PARAM) |
148 | { | 148 | { |
149 | int wstat; | 149 | int wstat; |
150 | int pid; | 150 | pid_t pid; |
151 | 151 | ||
152 | while ((pid = wait_any_nohang(&wstat)) > 0) { | 152 | while ((pid = wait_any_nohang(&wstat)) > 0) { |
153 | if (max_per_host) | 153 | if (max_per_host) |