diff options
author | Richard Yao <[email protected]> | 2023-01-10 16:54:23 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2023-01-12 16:00:30 -0800 |
commit | 64195fc89fa542726c5a45a09f89ed8cc14d033b (patch) | |
tree | 3c5128dd964955d96fa47258b7315312ebfa69fd /module/icp | |
parent | 3b2f9c1ec81a0c7059a81f5b4ae1e8f6296c090b (diff) |
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 <[email protected]>
Signed-off-by: Richard Yao <[email protected]>
Closes #14372
Diffstat (limited to 'module/icp')
-rw-r--r-- | module/icp/core/kcf_callprov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/icp/core/kcf_callprov.c b/module/icp/core/kcf_callprov.c index f06b3cd00..b1822dd5b 100644 --- a/module/icp/core/kcf_callprov.c +++ b/module/icp/core/kcf_callprov.c @@ -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); } |