rslib: replace ternary operator with min()
Commit Message
Fix the following coccicheck warning:
lib/reed_solomon/test_rslib.c:422: WARNING opportunity for min()
Signed-off-by: KaiLong Wang <wangkailong@jari.cn>
---
lib/reed_solomon/test_rslib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -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);
}