aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/qreg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/qreg.c')
-rw-r--r--src/qreg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qreg.c b/src/qreg.c
index 58c0966..c337dbe 100644
--- a/src/qreg.c
+++ b/src/qreg.c
@@ -18,6 +18,7 @@
#include "config.h"
#endif
+#include <stdbool.h>
#include <string.h>
#include <glib.h>
@@ -1268,7 +1269,7 @@ struct teco_machine_qregspec_t {
union {
struct {
teco_qreg_type_t type : 8;
- gboolean parse_only : 1;
+ bool parse_only : 1;
};
guint __flags;
};