Skip to content

Commit 9490010

Browse files
committed
Fix format (expand tab)
1 parent 6278c2b commit 9490010

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/mpz.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ static inline size_t mpz_max_num_bits(const mpz_t *z) {
143143
}
144144
static inline size_t mpz_num_bits(const mpz_t *z) {
145145
if (mpz_is_zero(z)) {
146-
return 0;
146+
return 0;
147147
}
148148
size_t last_bits = (8 * (sizeof(long) - sizeof(mpz_dig_t))) - __builtin_clzl(z->dig[z->len - 1]);
149149
return z->len * MPZ_DIG_SIZE + last_bits;

0 commit comments

Comments
 (0)