Fix: remove bogus parenthesis
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 27 Oct 2022 20:06:49 +0000 (16:06 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 27 Oct 2022 20:06:49 +0000 (16:06 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
src/rcu.h

index 9a6ae5e4f1d0cad5d6ddc803e810890969ff1ef9..1a93365b0d0f80fab4b0695a171ec65e862461f6 100644 (file)
--- a/src/rcu.h
+++ b/src/rcu.h
@@ -78,7 +78,7 @@ void side_rcu_read_end(struct side_rcu_gp_state *gp_state, unsigned int period)
 #define side_rcu_dereference(p) \
        __extension__ \
        ({ \
-               (__typeof__(p) _____side_v = __atomic_load_n(&(p), __ATOMIC_CONSUME); \
+               __typeof__(p) _____side_v = __atomic_load_n(&(p), __ATOMIC_CONSUME); \
                (_____side_v); \
        })
 
This page took 0.035516 seconds and 4 git commands to generate.