diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-07-08 17:05:55 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-07-08 17:05:55 +0200 |
commit | 405c307a72af520a8aba5609112a8c3a2b8a42a3 (patch) | |
tree | 177e31e0db7d4db2889297f8802a8a1d5f27ca86 | |
parent | a073cfa844e04010a2695f309b273c906ada271a (diff) |
udevadm: info - add space after R:, A:, W: on database export
<zzam> kay: udevadmin info -e prints all lines with a space after the :, but the W: line
<kay> zzam: yeah, seems so, and the R: and the A:
<zzam> yeah
-rw-r--r-- | udev/udevadm-info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/udev/udevadm-info.c b/udev/udevadm-info.c index fa09b98299..88bb0d401f 100644 --- a/udev/udevadm-info.c +++ b/udev/udevadm-info.c @@ -144,15 +144,15 @@ static void print_record(struct udev_device *device) i = udev_device_get_num_fake_partitions(device); if (i != 0) - printf("A:%u\n", i); + printf("A: %u\n", i); i = udev_device_get_ignore_remove(device); if (i != 0) - printf("R:%u\n", i); + printf("R: %u\n", i); i = udev_device_get_watch_handle(device); if (i >= 0) - printf("W:%u\n", i); + printf("W: %u\n", i); udev_list_entry_foreach(list_entry, udev_device_get_devlinks_list_entry(device)) { len = strlen(udev_get_dev_path(udev_device_get_udev(device))); |