summaryrefslogtreecommitdiff
path: root/threadproc
diff options
context:
space:
mode:
authorstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2000-01-28 02:29:04 +0000
committerstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2000-01-28 02:29:04 +0000
commit8ea2faacfc502a77addb73b114b0d74bae3a8234 (patch)
tree00e13bc4cf3b686292fd3f65a5d061c4c149862f /threadproc
parentcbfa148c07564de2584021eb51e20bab1da7ca2b (diff)
downloadlibapr-8ea2faacfc502a77addb73b114b0d74bae3a8234.tar.gz
Fix more funky indenting
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc')
-rw-r--r--threadproc/unix/proc.c12
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********************************************************