diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-07-05 15:20:39 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-07-05 15:20:39 +0400 |
commit | f2fcd7bdbcd6f4fe3b36fd326aa1ce1baacf7d1a (patch) | |
tree | e980971fc68cd55cca81454b1f6f8bdcfcff4bce /sql | |
parent | 00ee44ab821e6d8b3cfd5d058fb85e9157859eb7 (diff) | |
download | mariadb-git-f2fcd7bdbcd6f4fe3b36fd326aa1ce1baacf7d1a.tar.gz |
Fix compile error on Windows
Diffstat (limited to 'sql')
-rw-r--r-- | sql/sp_head.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index 8fd2dad1563..77adbf091b8 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -1277,7 +1277,7 @@ public: virtual void print(String *str); - void add_to_varlist(struct sp_variable *var) + void add_to_varlist(sp_variable *var) { m_varlist.push_back(var); } @@ -1285,7 +1285,7 @@ public: private: uint m_cursor; - List<struct sp_variable> m_varlist; + List<sp_variable> m_varlist; }; // class sp_instr_cfetch : public sp_instr |