summaryrefslogtreecommitdiff
path: root/test/testpipe.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-08-06 06:07:33 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-08-06 06:07:33 +0000
commite98dca6c6f234d950e40dc1cb4823c0b5b2ef461 (patch)
tree4f0eea47f7ec42ad43d4b3fad7f7d5907e416115 /test/testpipe.c
parent4a7353d9052714b34d1145533cd2cf21e33f4cf9 (diff)
downloadapr-e98dca6c6f234d950e40dc1cb4823c0b5b2ef461.tar.gz
Remaining cleanup of ap_ -> apr_ and AP_ -> APR_ transformation...
see src/lib/apr/apr_compat.h for most details. Also a few minor nits to get Win32 to build. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60481 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testpipe.c')
-rw-r--r--test/testpipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testpipe.c b/test/testpipe.c
index 9075c056e..4f1bdb149 100644
--- a/test/testpipe.c
+++ b/test/testpipe.c
@@ -95,7 +95,7 @@ int main(void)
}
fprintf(stdout, "\tSetting pipe timeout.......");
- if ((rv = apr_set_pipe_timeout(readp, 1 * AP_USEC_PER_SEC)) != APR_SUCCESS) {
+ if ((rv = apr_set_pipe_timeout(readp, 1 * APR_USEC_PER_SEC)) != APR_SUCCESS) {
fprintf(stderr, "apr_set_pipe_timeout()->%d/%s\n",
rv, apr_strerror(rv, msgbuf, sizeof msgbuf));
exit(-1);