]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tpm2-util: add line break where appropriate
authorLennart Poettering <lennart@poettering.net>
Thu, 19 Oct 2023 15:55:09 +0000 (17:55 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 20 Oct 2023 12:34:11 +0000 (14:34 +0200)
src/shared/tpm2-util.c

index 0dcfcc4d12104626f80c5c92fb3a747d1986d342..ce79c5b5f8a77bc1ad485729a5b3b6598e044e06 100644 (file)
@@ -4060,7 +4060,9 @@ int tpm2_seal(Tpm2Context *c,
                 /* TODO: force all callers to provide ret_srk_buf, so we can stop sealing with the legacy templates. */
                 primary_alg = TPM2_ALG_ECC;
 
-                TPM2B_PUBLIC template = { .size = sizeof(TPMT_PUBLIC), };
+                TPM2B_PUBLIC template = {
+                        .size = sizeof(TPMT_PUBLIC),
+                };
                 r = tpm2_get_legacy_template(primary_alg, &template.publicArea);
                 if (r < 0)
                         return log_debug_errno(r, "Could not get legacy ECC template: %m");