Skip to content

Commit b785c82

Browse files
committed
Merge branch 'global-state' of https://github.com/Vizonex/multidict into global-state
2 parents df0477a + 6a35f59 commit b785c82

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

multidict/_multilib/state.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ get_mod_state_by_def(PyObject *self)
130130
static inline uint64_t
131131
NEXT_VERSION(mod_state *state)
132132
{
133-
return atomic_fetch_add_explicit((_Atomic(uint64_t)*)&state->global_version, 1, memory_order_relaxed);
133+
return atomic_fetch_add_explicit(
134+
(_Atomic(uint64_t) *)&state->global_version, 1, memory_order_relaxed);
134135
}
135136

136137
#ifdef __cplusplus

0 commit comments

Comments
 (0)