aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdriver/gdriver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdriver/gdriver.h')
-rw-r--r--src/gdriver/gdriver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gdriver/gdriver.h b/src/gdriver/gdriver.h
index 4a1959a6..e8430fb1 100644
--- a/src/gdriver/gdriver.h
+++ b/src/gdriver/gdriver.h
@@ -67,7 +67,7 @@ typedef struct GDriverVMT {
uint16_t type; // @< What type of driver this is
uint16_t flags; // @< Flags for the driver. Meaning is specific to each driver type.
uint32_t objsize; // @< How big the runtime driver structure is
- bool_t (*init)(GDriver *driver, void *param, unsigned driverinstance, unsigned systeminstance); // @< Initialise the driver. Returns TRUE if OK.
+ gBool (*init)(GDriver *driver, void *param, unsigned driverinstance, unsigned systeminstance); // @< Initialise the driver. Returns gTrue if OK.
// driverinstance is the instance 0..n of this driver.
// systeminstance is the instance 0..n of this type of device.
// The memory allocated is cleared before this call.