aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-12-02 13:59:51 -0500
committerJack Lloyd <[email protected]>2018-12-02 13:59:51 -0500
commit387781c309596824b6cde965ba61bfa8a62c1817 (patch)
tree50f34304a2804fde64f4ddd55c3210428a888c19 /src/lib/math
parentd357b584454a5d42105cc7d4656cbf395522fd5b (diff)
One variable per line
Diffstat (limited to 'src/lib/math')
-rw-r--r--src/lib/math/mp/mp_core.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/math/mp/mp_core.h b/src/lib/math/mp/mp_core.h
index 2824a3456..d01c13a5e 100644
--- a/src/lib/math/mp/mp_core.h
+++ b/src/lib/math/mp/mp_core.h
@@ -737,7 +737,8 @@ inline word bigint_divop(word n1, word n0, word d)
return ((static_cast<dword>(n1) << BOTAN_MP_WORD_BITS) | n0) / d;
#else
- word high = n1 % d, quotient = 0;
+ word high = n1 % d;
+ word quotient = 0;
for(size_t i = 0; i != BOTAN_MP_WORD_BITS; ++i)
{