Skip to content

Commit

Permalink
Fix whitespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed May 19, 2023
1 parent 04af22b commit 6527b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/mathmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3944,7 +3944,7 @@ math_nextafter_impl(PyObject *module, double x, double y, PyObject *steps)
const uint64_t sign_bit = 1ULL<<63;

uint64_t ax = ux.i & ~sign_bit;
uint64_t ay = uy.i & ~sign_bit;
uint64_t ay = uy.i & ~sign_bit;

// opposite signs
if (((ux.i ^ uy.i) & sign_bit)) {
Expand Down

0 comments on commit 6527b77

Please sign in to comment.