summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2013-11-26 17:50:05 +0100
committerBastien Nocera <hadess@hadess.net>2013-11-26 17:50:05 +0100
commitf5c298c828f02620429a7352c6375a823a6a31a0 (patch)
tree30628cfc5865df365dbd94adac2a888c4ad705df
parent3fa7ed73475e35c0c756fde89213df1c856310c8 (diff)
downloadgnome-settings-daemon-f5c298c828f02620429a7352c6375a823a6a31a0.tar.gz
rfkill: Remove extraneous braces
-rw-r--r--plugins/rfkill/gsd-rfkill-manager.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/rfkill/gsd-rfkill-manager.c b/plugins/rfkill/gsd-rfkill-manager.c
index c2bcdce8..0b754494 100644
--- a/plugins/rfkill/gsd-rfkill-manager.c
+++ b/plugins/rfkill/gsd-rfkill-manager.c
@@ -175,9 +175,8 @@ engine_get_hardware_airplane_mode (GsdRfkillManager *manager)
gpointer key, value;
/* If we have no killswitches, hw airplane mode is off. */
- if (g_hash_table_size (manager->priv->killswitches) == 0) {
+ if (g_hash_table_size (manager->priv->killswitches) == 0)
return FALSE;
- }
g_hash_table_iter_init (&iter, manager->priv->killswitches);
while (g_hash_table_iter_next (&iter, &key, &value)) {