mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
qemu_tpm: Fix indentation in qemuTPMEmulatorBuildCommand
This was found by clang-tidy's "readability-misleading-indentation" check. Signed-off-by: Tim Wiederhake <twiederh@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
a6675869fb
commit
2870d99f1b
@ -600,9 +600,11 @@ qemuTPMEmulatorBuildCommand(virDomainTPMDefPtr tpm,
|
|||||||
}
|
}
|
||||||
|
|
||||||
pwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid, cmd);
|
pwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid, cmd);
|
||||||
if (pwdfile_fd)
|
if (pwdfile_fd) {
|
||||||
migpwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid,
|
migpwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid,
|
||||||
cmd);
|
cmd);
|
||||||
|
}
|
||||||
|
|
||||||
if (pwdfile_fd < 0 || migpwdfile_fd < 0)
|
if (pwdfile_fd < 0 || migpwdfile_fd < 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user