From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstddjb/wait_pid_nohang.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/wait_pid_nohang.c') diff --git a/src/libstddjb/wait_pid_nohang.c b/src/libstddjb/wait_pid_nohang.c index 11beed6..7b27bbe 100644 --- a/src/libstddjb/wait_pid_nohang.c +++ b/src/libstddjb/wait_pid_nohang.c @@ -1,16 +1,16 @@ /* ISC license. */ -#include +#include #include pid_t wait_pid_nohang (pid_t pid, int *wstat) { int w = 0 ; - register pid_t r = 0 ; + pid_t r = 0 ; while (r != pid) { r = wait_nohang(&w) ; - if (!r || (r == (pid_t)-1)) return (int)r ; + if (!r || (r == (pid_t)-1)) return r ; } *wstat = w ; return r ; -- cgit v1.2.3