summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2023-04-21 12:48:00 +0000
committerYann Ylavic <ylavic@apache.org>2023-04-21 12:48:00 +0000
commitb7f7b48520970a5e81427e1a3da032711fd9847c (patch)
tree7ca3de191e05782c2587126295c3778da69d5d3a
parent805904fe295efa5f480b067d8c60777675ea7368 (diff)
downloadapr-b7f7b48520970a5e81427e1a3da032711fd9847c.tar.gz
atomics: Follow up to r1909321: remaining NEED_ATOMICS_GENERIC64.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1909323 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--atomic/unix/builtins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atomic/unix/builtins.c b/atomic/unix/builtins.c
index 0a085a0b7..9a45dfb88 100644
--- a/atomic/unix/builtins.c
+++ b/atomic/unix/builtins.c
@@ -27,7 +27,7 @@
APR_DECLARE(apr_status_t) apr_atomic_init(apr_pool_t *p)
{
-#if defined (NEED_ATOMICS_GENERIC64)
+#if defined (USE_ATOMICS_GENERIC64)
return apr__atomic_generic64_init(p);
#else
return APR_SUCCESS;