Treewide: use bool instead of _Bool
[collectd.git] / src / testing.h
index d3da9db..fed7619 100644 (file)
@@ -56,7 +56,7 @@ static int check_count__ = 0;
 
 #define OK1(cond, text)                                                        \
   do {                                                                         \
-    _Bool result = (cond);                                                     \
+    bool result = (cond);                                                     \
     LOG(result, text);                                                         \
     if (!result) {                                                             \
       return -1;                                                               \