Fix the following coccicheck warning:
lib/reed_solomon/test_rslib.c:422: WARNING opportunity for min()
Signed-off-by: KaiLong Wang <[email protected]>
---
lib/reed_solomon/test_rslib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/reed_solomon/test_rslib.c b/lib/reed_solomon/test_rslib.c
index 848e7eb5da92..f4a03ae43b86 100644
--- a/lib/reed_solomon/test_rslib.c
+++ b/lib/reed_solomon/test_rslib.c
@@ -419,7 +419,7 @@ static int exercise_rs_bc(struct rs_control *rs, struct wspace *ws,
if (eras < 0)
eras = 0;
- cutoff = nroots <= len - errs ? nroots : len - errs;
+ cutoff = min(nroots, len - errs);
for (; eras <= cutoff; eras++)
test_bc(rs, len, errs, eras, trials, &stat, ws);
}
--
2.25.1