Skip to content

Commit 6527b77

Browse files
committed
Fix whitespace issue
1 parent 04af22b commit 6527b77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/mathmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3944,7 +3944,7 @@ math_nextafter_impl(PyObject *module, double x, double y, PyObject *steps)
39443944
const uint64_t sign_bit = 1ULL<<63;
39453945

39463946
uint64_t ax = ux.i & ~sign_bit;
3947-
uint64_t ay = uy.i & ~sign_bit;
3947+
uint64_t ay = uy.i & ~sign_bit;
39483948

39493949
// opposite signs
39503950
if (((ux.i ^ uy.i) & sign_bit)) {

0 commit comments

Comments
 (0)