From 0a3d108f46c39ada3e4db954f65d8e2fdab4f6b5 Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Thu, 6 Jul 2023 10:54:32 +0200 Subject: [PATCH] tpm2-util: remove unnecessary semicolon --- src/shared/tpm2-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/tpm2-util.c b/src/shared/tpm2-util.c index f7b4520ee43..c991109f722 100644 --- a/src/shared/tpm2-util.c +++ b/src/shared/tpm2-util.c @@ -3829,7 +3829,7 @@ int tpm2_pcr_mask_from_string(const char *arg, uint32_t *ret_mask) { if (r < 0) return log_error_errno(r, "Failed to parse specified PCR or specified PCR is out of range: %s", pcr); n = r; - SET_BIT(mask, n);; + SET_BIT(mask, n); } *ret_mask = mask; -- 2.47.3