From 59421d373beb89d6035146700898424a7e1506ba Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 1 Jun 2025 16:22:55 -0700 Subject: [PATCH] factor: FALLTHROUGH instead of break * src/factor.c (print_factors): Use FALLTHROUGH to make it clear that the "Use GMP" comment also applies here. --- src/factor.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/factor.c b/src/factor.c index 8ec1f5aba3..1b4a446330 100644 --- a/src/factor.c +++ b/src/factor.c @@ -2090,8 +2090,7 @@ print_factors (char const *input) print_factors_single (t1, t0); return true; } - break; - + FALLTHROUGH; case LONGINT_OVERFLOW: /* Try GMP. */ break; -- 2.47.3