diff options
author | serg@janus.mylan <> | 2007-04-13 19:23:02 +0200 |
---|---|---|
committer | serg@janus.mylan <> | 2007-04-13 19:23:02 +0200 |
commit | 3ecbb5a4437a1ce8be7a5c83354ff698846602cc (patch) | |
tree | c318326d7c94a04b34753308fce3a0bb1b38f53e /sql/rpl_utility.h | |
parent | 48f3ec85700eef4100fe0357a2e6bfaa9460f3f9 (diff) | |
download | mariadb-git-3ecbb5a4437a1ce8be7a5c83354ff698846602cc.tar.gz |
wl#2936 - fixing problems
Diffstat (limited to 'sql/rpl_utility.h')
-rw-r--r-- | sql/rpl_utility.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/rpl_utility.h b/sql/rpl_utility.h index 34cebf93ddb..9c4c4890942 100644 --- a/sql/rpl_utility.h +++ b/sql/rpl_utility.h @@ -64,7 +64,7 @@ public: size Number of elements in array 'types' */ table_def(field_type *types, my_size_t size) - : m_type(types), m_size(size) + : m_size(size), m_type(types) { } |