summaryrefslogtreecommitdiff
path: root/py/mpz.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-04-09 15:29:54 +0000
committerDamien George <damien.p.george@gmail.com>2015-04-09 15:29:54 +0000
commit4dea922610c8ea6af285cd49b0a531d4941d820f (patch)
tree9d10a279f23eb71d9ba9cd13e6da69b1ee77d03d /py/mpz.c
parentdf1637c580457234d805154efea1c51a83b1136a (diff)
py: Adjust some spaces in code style/format, purely for consistency.
Diffstat (limited to 'py/mpz.c')
-rw-r--r--py/mpz.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/py/mpz.c b/py/mpz.c
index 310f3037a..f54bde8b5 100644
--- a/py/mpz.c
+++ b/py/mpz.c
@@ -1174,8 +1174,7 @@ void mpz_xor_inpl(mpz_t *dest, const mpz_t *lhs, const mpz_t *rhs) {
/* computes dest = lhs * rhs
can have dest, lhs, rhs the same
*/
-void mpz_mul_inpl(mpz_t *dest, const mpz_t *lhs, const mpz_t *rhs)
-{
+void mpz_mul_inpl(mpz_t *dest, const mpz_t *lhs, const mpz_t *rhs) {
if (lhs->len == 0 || rhs->len == 0) {
mpz_set_from_int(dest, 0);
return;