diff options
Diffstat (limited to 'src/pulsecore/refcnt.h')
-rw-r--r-- | src/pulsecore/refcnt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/refcnt.h b/src/pulsecore/refcnt.h index 782436b5c..d52cac831 100644 --- a/src/pulsecore/refcnt.h +++ b/src/pulsecore/refcnt.h @@ -58,13 +58,13 @@ do { \ pa_atomic_store(&(p)->_ref, 1); \ pa_log("REF: Init %p", p); \ - } while (FALSE) + } while (false) #define PA_REFCNT_INC(p) \ do { \ pa_atomic_inc(&(p)->_ref); \ pa_log("REF: Inc %p", p); \ - } while (FALSE) \ + } while (false) \ #define PA_REFCNT_DEC(p) \ ({ \ |