Skip to content

Commit

Permalink
Correct typo in is_strong_bpsw_prp().
Browse files Browse the repository at this point in the history
  • Loading branch information
casevh committed Sep 5, 2023
1 parent ec4313b commit 45a6952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gmpy_mpz_prp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,7 @@ GMPY_mpz_is_strongbpsw_prp(PyObject *self, PyObject *args)
temp = Py_BuildValue("(O)", n);
if (!temp)
goto cleanup;
result = GMPY_mpz_is_strong_selfridge_prp(NULL, temp);
result = GMPY_mpz_is_strongselfridge_prp(NULL, temp);
Py_DECREF(temp);
goto return_result;

Expand Down

0 comments on commit 45a6952

Please sign in to comment.