From f7ad4376c5c8ce97d73e2bc9353b949d26d5b6e1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 19 Oct 2023 17:55:09 +0200 Subject: [PATCH] tpm2-util: add line break where appropriate --- src/shared/tpm2-util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/shared/tpm2-util.c b/src/shared/tpm2-util.c index 0dcfcc4d121..ce79c5b5f8a 100644 --- a/src/shared/tpm2-util.c +++ b/src/shared/tpm2-util.c @@ -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"); -- 2.47.3