From: Lennart Poettering Date: Tue, 24 Oct 2023 21:14:23 +0000 (+0200) Subject: tpm2-util: add line breaks in compound struct init, like we usually do X-Git-Tag: v255-rc1~146^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F29698%2Fhead;p=thirdparty%2Fsystemd.git tpm2-util: add line breaks in compound struct init, like we usually do --- diff --git a/src/shared/tpm2-util.c b/src/shared/tpm2-util.c index 4bb17157e27..70912930b84 100644 --- a/src/shared/tpm2-util.c +++ b/src/shared/tpm2-util.c @@ -1235,7 +1235,9 @@ int tpm2_get_or_create_srk( return 0; /* 0 → SRK already set up */ /* No SRK, create and persist one */ - TPM2B_PUBLIC template = { .size = sizeof(TPMT_PUBLIC), }; + TPM2B_PUBLIC template = { + .size = sizeof(TPMT_PUBLIC), + }; r = tpm2_get_best_srk_template(c, &template.publicArea); if (r < 0) return log_debug_errno(r, "Could not get best SRK template: %m"); @@ -2764,7 +2766,9 @@ int tpm2_digest_many( if (extend) sha256_process_bytes(digest->buffer, digest->size, &ctx); else { - *digest = (TPM2B_DIGEST){ .size = SHA256_DIGEST_SIZE, }; + *digest = (TPM2B_DIGEST) { + .size = SHA256_DIGEST_SIZE, + }; if (n_data == 0) /* If not extending and no data, return zero hash */ return 0; } @@ -4218,7 +4222,9 @@ int tpm2_unseal(Tpm2Context *c, if (r < 0) return r; } else if (primary_alg != 0) { - 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 template: %m");