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 48833e103..8ca3de71a 100644 --- a/coreutils/factor.c +++ b/coreutils/factor.c | |||
@@ -62,7 +62,7 @@ static inline half_t isqrt(wide_t N) | |||
62 | */ | 62 | */ |
63 | x = HALF_MAX; | 63 | x = HALF_MAX; |
64 | mask_2bits = TOPMOST_WIDE_BIT | (TOPMOST_WIDE_BIT >> 1); | 64 | mask_2bits = TOPMOST_WIDE_BIT | (TOPMOST_WIDE_BIT >> 1); |
65 | while (mask_2bits && !(N & mask_2bits)) { | 65 | while (!(N & mask_2bits)) { |
66 | x >>= 1; | 66 | x >>= 1; |
67 | mask_2bits >>= 2; | 67 | mask_2bits >>= 2; |
68 | } | 68 | } |