[libvirt PATCH 03/11] qemu_tpm: Fix indentation in qemuTPMEmulatorBuildCommand

Tim Wiederhake twiederh at redhat.com
Thu Jan 28 10:24:33 UTC 2021


This was found by clang-tidy's "readability-misleading-indentation"
check.

Signed-off-by: Tim Wiederhake <twiederh at redhat.com>
---
 src/qemu/qemu_tpm.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/qemu/qemu_tpm.c b/src/qemu/qemu_tpm.c
index 532e0912bd..f94cad8230 100644
--- a/src/qemu/qemu_tpm.c
+++ b/src/qemu/qemu_tpm.c
@@ -600,9 +600,11 @@ qemuTPMEmulatorBuildCommand(virDomainTPMDefPtr tpm,
         }
 
         pwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid, cmd);
-        if (pwdfile_fd)
-        migpwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid,
-                                               cmd);
+        if (pwdfile_fd) {
+            migpwdfile_fd = qemuTPMSetupEncryption(tpm->data.emulator.secretuuid,
+                                                   cmd);
+        }
+
         if (pwdfile_fd < 0 || migpwdfile_fd < 0)
             goto error;
 
-- 
2.26.2




More information about the libvir-list mailing list