diff --git a/src/fundamental/macro-fundamental.h b/src/fundamental/macro-fundamental.h index cd9e60cf60e..1f640b3ae3d 100644 --- a/src/fundamental/macro-fundamental.h +++ b/src/fundamental/macro-fundamental.h @@ -85,7 +85,7 @@ #define ONCE __ONCE(UNIQ_T(_once_, UNIQ)) #define __ONCE(o) \ ({ \ - static bool (o) = sd_false; \ + static sd_bool (o) = sd_false; \ __sync_bool_compare_and_swap(&(o), sd_false, sd_true); \ })