diff options
author | monty@mysql.com/nosik.monty.fi <> | 2006-11-27 01:47:38 +0200 |
---|---|---|
committer | monty@mysql.com/nosik.monty.fi <> | 2006-11-27 01:47:38 +0200 |
commit | fa81a82e7f2d03a4f60b1783d578ca1abeddfae9 (patch) | |
tree | b29f99476834178f395c188e1c4d352dd106fc01 /extra | |
parent | 89570bf966570ecce761e1fea2bb5d10db91f621 (diff) | |
download | mariadb-git-fa81a82e7f2d03a4f60b1783d578ca1abeddfae9.tar.gz |
Fixed a LOT of compiler warnings
Added missing DBUG_RETURN statements (in mysqldump.c)
Added missing enums
Fixed a lot of wrong DBUG_PRINT() statements, some of which could cause crashes
Removed usage of %lld and %p in printf strings as these are not portable or produces different results on different systems.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/yassl/taocrypt/include/algebra.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/taocrypt/include/algebra.hpp b/extra/yassl/taocrypt/include/algebra.hpp index 07fc405f093..535ce2599c4 100644 --- a/extra/yassl/taocrypt/include/algebra.hpp +++ b/extra/yassl/taocrypt/include/algebra.hpp @@ -75,7 +75,7 @@ public: typedef Integer Element; AbstractRing() : AbstractGroup() {m_mg.m_pRing = this;} - AbstractRing(const AbstractRing &source) {m_mg.m_pRing = this;} + AbstractRing(const AbstractRing &source) :AbstractGroup() {m_mg.m_pRing = this;} AbstractRing& operator=(const AbstractRing &source) {return *this;} virtual bool IsUnit(const Element &a) const =0; |