]> git.draconx.ca Git - upkg.git/blobdiff - src/uobject/uobject.c
Avoid C99 stdbool.
[upkg.git] / src / uobject / uobject.c
index 0fbcd8dab2cd47b00a1ccd6374820bfa9e3704f7..cf07735d3b500fa935a1b86fc79f835e309c017d 100644 (file)
@@ -22,7 +22,6 @@
 #include <string.h>
 #include <math.h>
 #include <stdarg.h>
-#include <stdbool.h>
 #include <inttypes.h>
 #include <assert.h>
 #include <glib-object.h>
@@ -43,7 +42,7 @@
 struct prop_head {
        const char *prop_name, *struct_name;
        unsigned long size, array_idx;
-       bool tag_msb;
+       gboolean tag_msb;
 
        enum {
                PROPERTY_END,