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:
Peter Krempa 2022-07-25 14:08:37 +02:00
parent ec272cd94e
commit ef0fef79e7

View File

@ -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;
}
}