diff options
author | Gluster Ant <bugzilla-bot@gluster.org> | 2018-09-12 17:52:45 +0530 |
---|---|---|
committer | Nigel Babu <nigelb@redhat.com> | 2018-09-12 17:52:45 +0530 |
commit | e16868dede6455cab644805af6fe1ac312775e13 (patch) | |
tree | 15aebdb4fff2d87cf8a72f836816b3aa634da58d /libglusterfs/src/atomic.h | |
parent | 45a71c0548b6fd2c757aa2e7b7671a1411948894 (diff) |
Land part 2 of clang-format changes
Change-Id: Ia84cc24c8924e6d22d02ac15f611c10e26db99b4
Signed-off-by: Nigel Babu <nigelb@redhat.com>
Diffstat (limited to 'libglusterfs/src/atomic.h')
-rw-r--r-- | libglusterfs/src/atomic.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libglusterfs/src/atomic.h b/libglusterfs/src/atomic.h index 3fd3a8764bf..dbbdc309628 100644 --- a/libglusterfs/src/atomic.h +++ b/libglusterfs/src/atomic.h @@ -114,10 +114,14 @@ GF_ATOMIC_TYPE(SIZEOF_LONG, uintptr); /* gf_atomic_uintptr_t */ * builtin version depending on the size of the atomic structure. */ #define GF_ATOMIC_CHOOSE(_atomic, _op, _args...) \ ((sizeof(_atomic) > sizeof(uint64_t)) \ - ? ({ GF_ATOMIC_MACRO(GF_ATOMIC_LOCK_, _op) \ - (_atomic, ##_args); }) \ - : ({ GF_ATOMIC_MACRO(GF_ATOMIC_BASE_, _op) \ - (_atomic, ##_args); })) + ? ({ \ + GF_ATOMIC_MACRO(GF_ATOMIC_LOCK_, _op) \ + (_atomic, ##_args); \ + }) \ + : ({ \ + GF_ATOMIC_MACRO(GF_ATOMIC_BASE_, _op) \ + (_atomic, ##_args); \ + })) /* Macros to implement the mutex-based atomics. */ #define GF_ATOMIC_OP_PREPARE(_atomic, _name) \ |