diff options
author | unknown <msvensson@pilot.mysql.com> | 2007-11-26 16:45:58 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2007-11-26 16:45:58 +0100 |
commit | bc60aa322814e1505ffe9da3d3a6d4675379828b (patch) | |
tree | 1413cb274269049ef637dfb07e047ac968eadcbb /client | |
parent | 747049ccb8f6be6f40df89e0dd4eacd02ac44958 (diff) | |
download | mariadb-git-bc60aa322814e1505ffe9da3d3a6d4675379828b.tar.gz |
Fix warning about possibly uninitialized variable "warnings"
Diffstat (limited to 'client')
-rw-r--r-- | client/mysql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 1e6207aab51..9fdb532155a 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -2166,7 +2166,7 @@ com_go(String *buffer,char *line __attribute__((unused))) { char buff[200], time_buff[32], *pos; MYSQL_RES *result; - ulong timer, warnings; + ulong timer, warnings= 0; uint error= 0; int err= 0; |