mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
qemuMigrationSrcIOFunc: Avoid unnecessary string construction
Use full strings for better greppability. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
ec272cd94e
commit
ef0fef79e7
@ -4267,11 +4267,11 @@ static void qemuMigrationSrcIOFunc(void *arg)
|
|||||||
goto abrt;
|
goto abrt;
|
||||||
}
|
}
|
||||||
|
|
||||||
VIR_DEBUG("Migration tunnel was asked to %s",
|
|
||||||
stop ? "abort" : "finish");
|
|
||||||
if (stop) {
|
if (stop) {
|
||||||
|
VIR_DEBUG("Migration tunnel was asked to abort");
|
||||||
goto abrt;
|
goto abrt;
|
||||||
} else {
|
} else {
|
||||||
|
VIR_DEBUG("Migration tunnel was asked to finish");
|
||||||
timeout = 0;
|
timeout = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user