1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-02-14 05:57:26 +03:00

src: fix incorrect indentation in function body by checking first line

Signed-off-by: Shi Lei <shi_lei@massclouds.com>
This commit is contained in:
Shi Lei 2018-09-13 16:55:20 +08:00 committed by Michal Privoznik
parent 37131adada
commit ab9a145926
13 changed files with 141 additions and 140 deletions

View File

@ -2301,7 +2301,7 @@ qemuDomainAddressFindNewTargetIndex(virDomainDefPtr def)
static int
qemuDomainAddressFindNewBusNr(virDomainDefPtr def)
{
/* Try to find a nice default for busNr for a new pci-expander-bus.
/* Try to find a nice default for busNr for a new pci-expander-bus.
* This is a bit tricky, since you need to satisfy the following:
*
* 1) There need to be enough unused bus numbers between busNr of this
@ -2343,6 +2343,7 @@ qemuDomainAddressFindNewBusNr(virDomainDefPtr def)
* buses within the current range allotted to the bus just prior to
* this one.
*/
size_t i;
int lowestBusNr = 256;