tpm2-util: remove unnecessary semicolon

This commit is contained in:
Antonio Alvarez Feijoo 2023-07-06 10:54:32 +02:00 committed by Luca Boccassi
parent efa5521be8
commit 0a3d108f46

View file

@ -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;