summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2017-06-06 10:04:56 +0200
committerOndrej Holy <oholy@redhat.com>2017-06-06 11:11:58 +0200
commit6863080c32abff9667238a3b04750c6f675e1e1a (patch)
tree16b26f852eeefc2c714aa96dd991ce27a5075df2
parent085b3470f0bc1c2972a63433caa4e098a378d2f6 (diff)
downloadglib-6863080c32abff9667238a3b04750c6f675e1e1a.tar.gz
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
-rw-r--r--gio/gio-tool-mount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/gio-tool-mount.c b/gio/gio-tool-mount.c
index b2ec57c12..9522713e9 100644
--- a/gio/gio-tool-mount.c
+++ b/gio/gio-tool-mount.c
@@ -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);
}