mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04:00
Fix the wrong function for the atomic_fetch_add_explicit64 shim on non-WIN64 build
This commit is contained in:
parent
6b3cf36032
commit
52064809b4
1 changed files with 1 additions and 1 deletions
|
|
@ -187,7 +187,7 @@ atomic_load_abort() {
|
|||
: InterlockedExchangeAdd64((atomic_int_fast64_t *)obj, arg))))
|
||||
#else
|
||||
#define atomic_fetch_add_explicit64(obj, arg, order) \
|
||||
InterlockedExchange64((atomic_int_fast64_t *)obj, arg)
|
||||
InterlockedExchangeAdd64((atomic_int_fast64_t *)obj, arg)
|
||||
#endif
|
||||
|
||||
static inline
|
||||
|
|
|
|||
Loading…
Reference in a new issue