Cleanup: Remove unneeded semicolons

The Linux 5.16.14 kernel's coccicheck caught this. The semantic
patch that caught it was:

./scripts/coccinelle/misc/semicolon.cocci

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu>
Closes #14372
This commit is contained in:
Richard Yao
2023-01-10 16:54:23 -05:00
committed by Brian Behlendorf
parent 3b2f9c1ec8
commit 64195fc89f
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ is_in_triedlist(kcf_provider_desc_t *pd, kcf_prov_tried_t *triedl)
if (triedl->pt_pd == pd)
return (B_TRUE);
triedl = triedl->pt_next;
};
}
return (B_FALSE);
}