]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tpm2-util: remove unnecessary semicolon
authorAntonio Alvarez Feijoo <antonio.feijoo@suse.com>
Thu, 6 Jul 2023 08:54:32 +0000 (10:54 +0200)
committerLuca Boccassi <luca.boccassi@gmail.com>
Thu, 6 Jul 2023 09:44:23 +0000 (10:44 +0100)
src/shared/tpm2-util.c

index f7b4520ee43296b52c4b5a6bae83ca8314e7237f..c991109f722b28144f9bdee883f746e09e655a93 100644 (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;