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;
|
||||
}
|
||||
|
||||
VIR_DEBUG("Migration tunnel was asked to %s",
|
||||
stop ? "abort" : "finish");
|
||||
if (stop) {
|
||||
VIR_DEBUG("Migration tunnel was asked to abort");
|
||||
goto abrt;
|
||||
} else {
|
||||
VIR_DEBUG("Migration tunnel was asked to finish");
|
||||
timeout = 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user