aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/qreg.c
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2024-09-28 23:10:42 +0400
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2024-09-28 23:10:42 +0400
commit024d26ac0cd869826801889f1299df34676fdf57 (patch)
tree408cd593e9f0375225b56594063bb061b72f9e27 /src/qreg.c
parent41ceabc9a4d285c641b82ad3a571fed461c4ad9a (diff)
downloadsciteco-024d26ac0cd869826801889f1299df34676fdf57.tar.gz
replaced bool completely with gboolean
Diffstat (limited to 'src/qreg.c')
-rw-r--r--src/qreg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qreg.c b/src/qreg.c
index c337dbe..58c0966 100644
--- a/src/qreg.c
+++ b/src/qreg.c
@@ -18,7 +18,6 @@
#include "config.h"
#endif
-#include <stdbool.h>
#include <string.h>
#include <glib.h>
@@ -1269,7 +1268,7 @@ struct teco_machine_qregspec_t {
union {
struct {
teco_qreg_type_t type : 8;
- bool parse_only : 1;
+ gboolean parse_only : 1;
};
guint __flags;
};