diff options
Diffstat (limited to 'src/lib/math/numbertheory/nistp_redc.cpp')
-rw-r--r-- | src/lib/math/numbertheory/nistp_redc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/numbertheory/nistp_redc.cpp b/src/lib/math/numbertheory/nistp_redc.cpp index 36135f891..f2782038b 100644 --- a/src/lib/math/numbertheory/nistp_redc.cpp +++ b/src/lib/math/numbertheory/nistp_redc.cpp @@ -70,7 +70,7 @@ void redc_p521(BigInt& x, secure_vector<word>& ws) * Otherwise we must reduce if p is exactly 2^512-1 */ - word possibly_521 = MP_WORD_MAX;; + word possibly_521 = MP_WORD_MAX; for(size_t i = 0; i != p_full_words; ++i) possibly_521 &= x.word_at(i); |