btrfs-progs: mkfs, move uuid to the end of device summary
authorDavid Sterba <dsterba@suse.cz>
Mon, 2 Feb 2015 15:10:10 +0000 (16:10 +0100)
committerDavid Sterba <dsterba@suse.cz>
Mon, 8 Jun 2015 15:50:47 +0000 (17:50 +0200)
Signed-off-by: David Sterba <dsterba@suse.cz>
mkfs.c

diff --git a/mkfs.c b/mkfs.c
index 6cff69f..e4395a0 100644 (file)
--- a/mkfs.c
+++ b/mkfs.c
@@ -1145,16 +1145,16 @@ static void list_all_devices(struct btrfs_root *root)
                number_of_devices++;
 
        printf("  Number of devices:\t%d\n", number_of_devices);
-       printf("    UUID                                  ID    SIZE    PATH\n");
-       printf("    ------------------------------------  --  --------- -----------\n");
+       printf("    ID   SIZE        PATH          UUID\n");
+       printf("    ---  ----------  ------------  ------------------------------------\n");
        list_for_each_entry_reverse(device, &fs_devices->devices, dev_list) {
                char dev_uuid[BTRFS_UUID_UNPARSED_SIZE];
 
                uuid_unparse(device->uuid, dev_uuid);
-               printf("    %s %3llu %10s %s\n",
-                       dev_uuid, device->devid,
+               printf("    %3llu  %10s  %12s  %s\n",
+                       device->devid,
                        pretty_size(device->total_bytes),
-                       device->name);
+                       device->name, dev_uuid);
                total_block_count += device->total_bytes;
        }