gio-tool: Fix alignment of monitor messages

Name of GMount/GVolume/GDrive is aligned in many cases in output messages,
except few cases. Let's unify the alignment.

https://bugzilla.gnome.org/show_bug.cgi?id=776169
This commit is contained in:
Ondrej Holy 2017-06-06 10:04:56 +02:00
parent 085b3470f0
commit 6863080c32

View File

@ -998,7 +998,7 @@ monitor_mount_added (GVolumeMonitor *volume_monitor, GMount *mount)
{
char *name;
name = g_mount_get_name (mount);
g_print ("Mount added: '%s'\n", name);
g_print ("Mount added: '%s'\n", name);
g_free (name);
monitor_print_mount (mount);
}
@ -1008,7 +1008,7 @@ monitor_mount_removed (GVolumeMonitor *volume_monitor, GMount *mount)
{
char *name;
name = g_mount_get_name (mount);
g_print ("Mount removed: '%s'\n", name);
g_print ("Mount removed: '%s'\n", name);
g_free (name);
monitor_print_mount (mount);
}
@ -1018,7 +1018,7 @@ monitor_mount_changed (GVolumeMonitor *volume_monitor, GMount *mount)
{
char *name;
name = g_mount_get_name (mount);
g_print ("Mount changed: '%s'\n", name);
g_print ("Mount changed: '%s'\n", name);
g_free (name);
monitor_print_mount (mount);
}