Disabled C99.

This commit is contained in:
Markus Makela
2015-07-14 12:14:01 +03:00
parent 40f4d8ee8f
commit 96edaca90c
2 changed files with 3 additions and 3 deletions

View File

@ -525,7 +525,7 @@ static MONITOR_SERVERS *build_mysql51_replication_tree(MONITOR *mon)
{
MONITOR_SERVERS* database = mon->databases;
MONITOR_SERVERS *ptr,*rval = NULL;
int i;
while(database)
{
bool ismaster = false;
@ -587,7 +587,7 @@ static MONITOR_SERVERS *build_mysql51_replication_tree(MONITOR *mon)
while(ptr)
{
for(int i = 0;ptr->server->slaves[i];i++)
for(i = 0;ptr->server->slaves[i];i++)
{
if(ptr->server->slaves[i] == database->server->node_id)
{