]> git.proxmox.com Git - mirror_qemu.git/commit
fix info qtree indention
authorGerd Hoffmann <kraxel@redhat.com>
Wed, 11 Jul 2012 10:21:23 +0000 (12:21 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Fri, 31 Aug 2012 08:16:11 +0000 (10:16 +0200)
commitda9fbe76a0639c529f9678aabcc052dfe4cd9cc4
tree50baf6439d7dc464a5d5e4b88c26d021d98356e9
parentb834b5081d6266cc0789454905f3b7d622d4d096
fix info qtree indention

Without the patch bus properties are are not in line with the other
properties:

[ ... ]
  dev: fw_cfg, id ""
    ctl_iobase = 0x510
    data_iobase = 0x511
      irq 0
      mmio ffffffffffffffff/0000000000000002
      mmio ffffffffffffffff/0000000000000001
[ ... ]

With the patch applied everything is lined up properly:

[ ... ]
  dev: fw_cfg, id ""
    ctl_iobase = 0x510
    data_iobase = 0x511
    irq 0
    mmio ffffffffffffffff/0000000000000002
    mmio ffffffffffffffff/0000000000000001
[ ... ]

Needed to make the autotest qtree parser happy.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/qdev-monitor.c