Code

Use stdbool.h's bool type instead of _Bool.
[sysdb.git] / src / frontend / connection-private.h
index 042091a997044a712c4de1d4c45fe734b1406348..1e5e9e53fee775f452ed85454ef8abea79fc1bb4 100644 (file)
@@ -73,7 +73,7 @@ struct sdb_conn {
 
        /* user information */
        char *username; /* NULL if the user has not been authenticated */
-       _Bool ready; /* indicates that startup finished successfully */
+       bool  ready; /* indicates that startup finished successfully */
 };
 #define CONN(obj) ((sdb_conn_t *)(obj))