aboutsummaryrefslogtreecommitdiff
path: root/py/objint_mpz.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2020-03-27 00:35:04 +1100
committerDamien George <damien.p.george@gmail.com>2020-03-28 23:36:44 +1100
commit1a3e386c67e03a79eb768cb6e9f6777e002d6660 (patch)
tree7e0b0620744e738bb281eb1c032b21a53558b8c0 /py/objint_mpz.c
parentb56caaf104a196902efb23f324f7e290c6f3d291 (diff)
all: Remove spaces inside and around parenthesis.
Using new options enabled in the uncrustify configuration.
Diffstat (limited to 'py/objint_mpz.c')
-rw-r--r--py/objint_mpz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint_mpz.c b/py/objint_mpz.c
index 5fd558f72..0455a58ec 100644
--- a/py/objint_mpz.c
+++ b/py/objint_mpz.c
@@ -348,7 +348,7 @@ mp_obj_t mp_obj_int_pow3(mp_obj_t base, mp_obj_t exponent, mp_obj_t modulus) {
mp_raise_TypeError("pow() with 3 arguments requires integers");
} else {
mp_obj_t result = mp_obj_new_int_from_ull(0); // Use the _from_ull version as this forces an mpz int
- mp_obj_int_t *res_p = (mp_obj_int_t *) MP_OBJ_TO_PTR(result);
+ mp_obj_int_t *res_p = (mp_obj_int_t *)MP_OBJ_TO_PTR(result);
mpz_t l_temp, r_temp, m_temp;
mpz_t *lhs = mp_mpz_for_int(base, &l_temp);