rslib: replace ternary operator with min()

Message ID 4b3795b5.6.1840fb613ac.Coremail.wangkailong@jari.cn
State New
Headers
Series rslib: replace ternary operator with min() |

Commit Message

KaiLong Wang Oct. 25, 2022, 3:15 p.m. UTC
  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(-)
  

Patch

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);
 	}