diff options
author | lloyd <[email protected]> | 2009-11-19 20:40:46 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-19 20:40:46 +0000 |
commit | 390d8e682689ab2587aecb7987632f5b0eab7e3e (patch) | |
tree | 4feb285eed80c595376940290d19b5a4643b45cb /src | |
parent | 23a86df38c11918997732aa2cb9ffc194a59d07a (diff) |
Remove extra 'f' char in ostream output
Diffstat (limited to 'src')
-rw-r--r-- | src/math/gfpmath/curve_gfp.cpp | 2 |
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() << ")"; } } |