diff options
author | marosg <[email protected]> | 2017-08-21 08:13:45 +0200 |
---|---|---|
committer | marosg <[email protected]> | 2017-08-21 08:13:45 +0200 |
commit | 51daf9c54be3d5a9427f78fe296c37feb7a13aaa (patch) | |
tree | 70b99f0d606e7f5d7c21a27141308d8eff69b759 /drivemount/drive-button.c | |
parent | d809e57c7b09f545f1cf847f514fa738d44ac2b3 (diff) | |
download | mate-applets-51daf9c54be3d5a9427f78fe296c37feb7a13aaa.tar.bz2 mate-applets-51daf9c54be3d5a9427f78fe296c37feb7a13aaa.tar.xz |
Get rid of misleading_indentation and maybe-uninitialized warnings during build
Diffstat (limited to 'drivemount/drive-button.c')
-rw-r--r-- | drivemount/drive-button.c | 28 |
1 files changed, 15 insertions, 13 deletions
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 (); |