From 405c307a72af520a8aba5609112a8c3a2b8a42a3 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Wed, 8 Jul 2009 17:05:55 +0200 Subject: [PATCH] udevadm: info - add space after R:, A:, W: on database export kay: udevadmin info -e prints all lines with a space after the :, but the W: line zzam: yeah, seems so, and the R: and the A: yeah --- udev/udevadm-info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/udev/udevadm-info.c b/udev/udevadm-info.c index fa09b9829..88bb0d401 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))); -- 2.30.2