summaryrefslogtreecommitdiffstats
path: root/commands/devinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/devinfo.c')
-rw-r--r--commands/devinfo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/devinfo.c b/commands/devinfo.c
index ba1671b6e2..eb36f33ba7 100644
--- a/commands/devinfo.c
+++ b/commands/devinfo.c
@@ -25,15 +25,15 @@ static int do_devinfo_subtree(struct device_d *dev, int depth)
int i;
for (i = 0; i < depth; i++)
- printf(" ");
+ printf(" ");
- printf("`---- %s", dev_name(dev));
+ printf("`-- %s", dev_name(dev));
if (!list_empty(&dev->cdevs)) {
printf("\n");
list_for_each_entry(cdev, &dev->cdevs, devices_list) {
for (i = 0; i < depth + 1; i++)
- printf(" ");
- printf("`---- 0x%08llx-0x%08llx: /dev/%s\n",
+ printf(" ");
+ printf("`-- 0x%08llx-0x%08llx: /dev/%s\n",
cdev->offset,
cdev->offset + cdev->size - 1,
cdev->name);