diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-28 23:10:42 +0400 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-28 23:10:42 +0400 |
commit | 024d26ac0cd869826801889f1299df34676fdf57 (patch) | |
tree | 408cd593e9f0375225b56594063bb061b72f9e27 /src/qreg.c | |
parent | 41ceabc9a4d285c641b82ad3a571fed461c4ad9a (diff) | |
download | sciteco-024d26ac0cd869826801889f1299df34676fdf57.tar.gz |
replaced bool completely with gboolean
Diffstat (limited to 'src/qreg.c')
-rw-r--r-- | src/qreg.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; }; |