Skip to content

Commit 29ebb81

Browse files
committed
Typo: Extra space
1 parent a434131 commit 29ebb81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/util/math.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ export_twos_complement(mpz_t number, size_t* size)
498498
* -32768 (100 0000 0000 0000), etc. that can be handled by n - 1 bytes in
499499
* two's complement.
500500
*/
501-
if (mpz_scan1(number, 0) == (8 * (n - 1)) - 1) {
501+
if (mpz_scan1(number, 0) == (8 * (n - 1)) - 1) {
502502
n--;
503503
}
504504

0 commit comments

Comments
 (0)