aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-11-19 20:40:46 +0000
committerlloyd <[email protected]>2009-11-19 20:40:46 +0000
commit390d8e682689ab2587aecb7987632f5b0eab7e3e (patch)
tree4feb285eed80c595376940290d19b5a4643b45cb /src
parent23a86df38c11918997732aa2cb9ffc194a59d07a (diff)
Remove extra 'f' char in ostream output
Diffstat (limited to 'src')
-rw-r--r--src/math/gfpmath/curve_gfp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/gfpmath/curve_gfp.cpp b/src/math/gfpmath/curve_gfp.cpp
index 9a3ffd482..3cdb08a65 100644
--- a/src/math/gfpmath/curve_gfp.cpp
+++ b/src/math/gfpmath/curve_gfp.cpp
@@ -159,7 +159,7 @@ bool operator==(const CurveGFp& lhs, const CurveGFp& rhs)
std::ostream& operator<<(std::ostream& output, const CurveGFp& elem)
{
- return output << "y^2f = x^3 + (" << elem.get_a() << ")x + (" << elem.get_b() << ")";
+ return output << "y^2 = x^3 + (" << elem.get_a() << ")x + (" << elem.get_b() << ")";
}
}