diff options
Diffstat (limited to 'coreutils/factor.c')
-rw-r--r-- | coreutils/factor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/factor.c b/coreutils/factor.c index 4e521dbc0..5c4d124a8 100644 --- a/coreutils/factor.c +++ b/coreutils/factor.c | |||
@@ -118,7 +118,7 @@ static NOINLINE void factorize(wide_t N) | |||
118 | */ | 118 | */ |
119 | while ((N % factor) == 0) { /* not likely */ | 119 | while ((N % factor) == 0) { /* not likely */ |
120 | N = N / factor; | 120 | N = N / factor; |
121 | printf(" %u"HALF_FMT, factor); | 121 | printf(" %"HALF_FMT"u", factor); |
122 | max_factor = isqrt_odd(N); | 122 | max_factor = isqrt_odd(N); |
123 | } | 123 | } |
124 | next_factor: | 124 | next_factor: |