@@ -27,11 +27,11 @@ } static OF_INLINE void *_Nullable of_atomic_ptr_add(void *volatile _Nullable *_Nonnull p, intptr_t i) { - return __sync_add_and_fetch(p, (void*)i); + return __sync_add_and_fetch(p, (void *)i); } static OF_INLINE int of_atomic_int_sub(volatile int *_Nonnull p, int i) { @@ -45,11 +45,11 @@ } static OF_INLINE void *_Nullable of_atomic_ptr_sub(void *volatile _Nullable *_Nonnull p, intptr_t i) { - return __sync_sub_and_fetch(p, (void*)i); + return __sync_sub_and_fetch(p, (void *)i); } static OF_INLINE int of_atomic_int_inc(volatile int *_Nonnull p) {