aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fpe/fpe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fpe/fpe.cpp b/src/fpe/fpe.cpp
index ca018fa23..86e56625d 100644
--- a/src/fpe/fpe.cpp
+++ b/src/fpe/fpe.cpp
@@ -67,7 +67,7 @@ void factor(BigInt n, BigInt& a, BigInt& b)
* of rounds to use for FPE is 2+log_a(b). If a >= b then log_a(b) <= 1
* so 3 rounds is safe. The FPE factorization routine should always
* return a >= b, so just confirm that and return 3.
-* /
+*/
u32bit rounds(const BigInt& a, const BigInt& b)
{
if(a < b)