From: Paul Eggert Date: Sun, 1 Jun 2025 23:22:55 +0000 (-0700) Subject: factor: FALLTHROUGH instead of break X-Git-Tag: v9.8~235 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=59421d373beb89d6035146700898424a7e1506ba;p=thirdparty%2Fcoreutils.git factor: FALLTHROUGH instead of break * src/factor.c (print_factors): Use FALLTHROUGH to make it clear that the "Use GMP" comment also applies here. --- 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;