From 51daf9c54be3d5a9427f78fe296c37feb7a13aaa Mon Sep 17 00:00:00 2001 From: marosg Date: Mon, 21 Aug 2017 08:13:45 +0200 Subject: Get rid of misleading_indentation and maybe-uninitialized warnings during build --- drivemount/drive-button.c | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'drivemount/drive-button.c') diff --git a/drivemount/drive-button.c b/drivemount/drive-button.c index b4fc6dc3..2c93ce75 100644 --- a/drivemount/drive-button.c +++ b/drivemount/drive-button.c @@ -890,22 +890,24 @@ drive_button_ensure_popup (DriveButton *self) mounted = FALSE; if (self->volume) { - GMount *mount = NULL; + GMount *mount = NULL; - display_name = g_volume_get_name (self->volume); - ejectable = g_volume_can_eject (self->volume); + display_name = g_volume_get_name (self->volume); + ejectable = g_volume_can_eject (self->volume); - mount = g_volume_get_mount (self->volume); - if (mount) { - mounted = TRUE; - g_object_unref (mount); - } + mount = g_volume_get_mount (self->volume); + if (mount) { + mounted = TRUE; + g_object_unref (mount); + } } else { - if (!G_IS_MOUNT(self->volume)) - return; - display_name = g_mount_get_name (self->mount); - ejectable = g_mount_can_eject (self->mount); - mounted = TRUE; + if (!G_IS_MOUNT(self->volume)) + return; + else { + display_name = g_mount_get_name (self->mount); + ejectable = g_mount_can_eject (self->mount); + mounted = TRUE; + } } self->popup_menu = gtk_menu_new (); -- cgit v1.2.1