diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-16 19:24:16 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-16 19:24:16 +0300 |
commit | caee6fbff7cf0a10bf568b1ed9643d15061f305c (patch) | |
tree | a06a34765737c6db04fe9947173f473671f63778 /src/qreg.c | |
parent | 83de3c9e308192616ad3b6ea15b0a22cec0bd312 (diff) | |
download | sciteco-caee6fbff7cf0a10bf568b1ed9643d15061f305c.tar.gz |
Revert "replaced bool completely with gboolean"
This reverts commit 024d26ac0cd869826801889f1299df34676fdf57.
This was re-introducing Clang warnings since gboolean is signed.
I should have read the git blame before re-introducing gboolean...
Diffstat (limited to 'src/qreg.c')
-rw-r--r-- | src/qreg.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; }; |