mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 06:33:41 +02:00
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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user