device: use bool instead of gboolean in the bridge options struct

just to save some bytes of memory (gboolean --> typef gint)
This commit is contained in:
Francesco Giudici 2019-01-03 14:53:02 +01:00
parent 30d9744534
commit ede6b65abf

View file

@ -171,8 +171,8 @@ typedef struct {
uint nm_min;
uint nm_max;
uint nm_default;
gboolean default_if_zero;
gboolean user_hz_compensate;
bool default_if_zero;
bool user_hz_compensate;
} Option;
static const Option master_options[] = {