diff options
author | Brian Havard <bjh@apache.org> | 2010-04-02 10:10:01 +0000 |
---|---|---|
committer | Brian Havard <bjh@apache.org> | 2010-04-02 10:10:01 +0000 |
commit | 4bca49e8c00a0e89a1318730c5a6da81d99f20da (patch) | |
tree | 32521cff65afe5e982f91f35a94a2532dac10d1f /threadproc/os2/proc.c | |
parent | 575d73fc0832c8449a34df414f16822a7292cc4d (diff) | |
download | apr-4bca49e8c00a0e89a1318730c5a6da81d99f20da.tar.gz apr-4bca49e8c00a0e89a1318730c5a6da81d99f20da.zip |
OS/2: Remove all remaining uses of APR_OS2_STATUS macro which has been
superceded by the more general APR_FROM_OS_ERROR.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@930224 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/os2/proc.c')
-rw-r--r-- | threadproc/os2/proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/threadproc/os2/proc.c b/threadproc/os2/proc.c index 96f76d699..7047401b1 100644 --- a/threadproc/os2/proc.c +++ b/threadproc/os2/proc.c @@ -619,7 +619,7 @@ APR_DECLARE(apr_status_t) apr_proc_wait_all_procs(apr_proc_t *proc, return APR_CHILD_NOTDONE; } - return APR_OS2_STATUS(rc); + return APR_FROM_OS_ERROR(rc); } @@ -640,7 +640,7 @@ APR_DECLARE(apr_status_t) apr_proc_wait(apr_proc_t *proc, return APR_CHILD_NOTDONE; } - return APR_OS2_STATUS(rc); + return APR_FROM_OS_ERROR(rc); } |