mirror of https://gitee.com/openkylin/libvirt.git
qemuMigrationBeginPhase: Fix function header indentation
This function is returning a string (domain XML). Since d3ce7363
when it was first introduced, it was indented incorrectly:
static char
*qemuMigrationBeginPhase(..)
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
1049a8d8b4
commit
9c5efd1afd
|
@ -2699,14 +2699,14 @@ qemuMigrationCleanup(virDomainObjPtr vm,
|
|||
|
||||
|
||||
/* The caller is supposed to lock the vm and start a migration job. */
|
||||
static char
|
||||
*qemuMigrationBeginPhase(virQEMUDriverPtr driver,
|
||||
virDomainObjPtr vm,
|
||||
const char *xmlin,
|
||||
const char *dname,
|
||||
char **cookieout,
|
||||
int *cookieoutlen,
|
||||
unsigned long flags)
|
||||
static char *
|
||||
qemuMigrationBeginPhase(virQEMUDriverPtr driver,
|
||||
virDomainObjPtr vm,
|
||||
const char *xmlin,
|
||||
const char *dname,
|
||||
char **cookieout,
|
||||
int *cookieoutlen,
|
||||
unsigned long flags)
|
||||
{
|
||||
char *rv = NULL;
|
||||
qemuMigrationCookiePtr mig = NULL;
|
||||
|
|
Loading…
Reference in New Issue