diff options
author | Bill Stoddard <stoddard@apache.org> | 2000-01-28 02:29:04 +0000 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 2000-01-28 02:29:04 +0000 |
commit | fa8dc24690e0e37ed16a78553efe04946b74e36c (patch) | |
tree | 00e13bc4cf3b686292fd3f65a5d061c4c149862f /threadproc/unix/proc.c | |
parent | 33699965e9ad86976b0339fc02b1804cb2bbcbcc (diff) | |
download | apr-fa8dc24690e0e37ed16a78553efe04946b74e36c.tar.gz apr-fa8dc24690e0e37ed16a78553efe04946b74e36c.zip |
Fix more funky indenting
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix/proc.c')
-rw-r--r-- | threadproc/unix/proc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/threadproc/unix/proc.c b/threadproc/unix/proc.c index a611262b7..5f2c7031f 100644 --- a/threadproc/unix/proc.c +++ b/threadproc/unix/proc.c @@ -474,12 +474,12 @@ ap_status_t ap_wait_proc(struct proc_t *proc, return errno; } if ((status = waitpid(proc->pid, NULL, WUNTRACED | WNOHANG)) > 0) { - return APR_CHILD_DONE; - } - else if (status == 0) { - return APR_CHILD_NOTDONE; - } - return errno; + return APR_CHILD_DONE; + } + else if (status == 0) { + return APR_CHILD_NOTDONE; + } + return errno; } /* ***APRDOC******************************************************** |