summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2011-03-29 19:30:22 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2011-03-29 19:30:22 +0000
commit47d51cf5d7d7f6980659bbf7b391d543b155cf0a (patch)
treef2eae316527e67e48e064b19903ee6be6c10a312 /support
parentbe5153dc856f87863bd3f065f78557ba7bd74133 (diff)
downloadlibapr-47d51cf5d7d7f6980659bbf7b391d543b155cf0a.tar.gz
fix a bit of 'if FOO'/'ifdef FOO' confusion
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1086695 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/unix/waitio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/unix/waitio.c b/support/unix/waitio.c
index 19b8b1d6b..0d762ea6d 100644
--- a/support/unix/waitio.c
+++ b/support/unix/waitio.c
@@ -22,7 +22,7 @@
/* The only case where we don't use wait_for_io_or_timeout is on
* pre-BONE BeOS, so this check should be sufficient and simpler */
-#if !BEOS_R5 && !defined(OS2) && APR_FILES_AS_SOCKETS
+#if !defined(BEOS_R5) && !defined(OS2) && APR_FILES_AS_SOCKETS
#define USE_WAIT_FOR_IO
#endif