From bc60aa322814e1505ffe9da3d3a6d4675379828b Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 26 Nov 2007 16:45:58 +0100 Subject: [PATCH] Fix warning about possibly uninitialized variable "warnings" --- client/mysql.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;