From ede6b65abf6cf161d64c8826df0c5b41afd13a42 Mon Sep 17 00:00:00 2001 From: Francesco Giudici Date: Thu, 3 Jan 2019 14:53:02 +0100 Subject: [PATCH] device: use bool instead of gboolean in the bridge options struct just to save some bytes of memory (gboolean --> typef gint) --- src/devices/nm-device-bridge.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/nm-device-bridge.c b/src/devices/nm-device-bridge.c index efbf58c583..02c5df0c51 100644 --- a/src/devices/nm-device-bridge.c +++ b/src/devices/nm-device-bridge.c @@ -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[] = {