diff options
author | Yann Ylavic <ylavic@apache.org> | 2023-04-21 12:48:00 +0000 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2023-04-21 12:48:00 +0000 |
commit | b7f7b48520970a5e81427e1a3da032711fd9847c (patch) | |
tree | 7ca3de191e05782c2587126295c3778da69d5d3a /atomic/unix/builtins.c | |
parent | 805904fe295efa5f480b067d8c60777675ea7368 (diff) | |
download | apr-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
Diffstat (limited to 'atomic/unix/builtins.c')
-rw-r--r-- | atomic/unix/builtins.c | 2 |
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; |