From e849297fc8090d82f092ca3f13596e3ec539e5fd Mon Sep 17 00:00:00 2001 From: TheTuxKeeper Date: Sun, 3 Apr 2016 19:35:03 +0200 Subject: [PATCH] line length now less than 110 characters --- server/modules/monitor/mysqlmon/mysql_mon.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/modules/monitor/mysqlmon/mysql_mon.c b/server/modules/monitor/mysqlmon/mysql_mon.c index 4e30c5cfe..c171699f9 100644 --- a/server/modules/monitor/mysqlmon/mysql_mon.c +++ b/server/modules/monitor/mysqlmon/mysql_mon.c @@ -1443,7 +1443,10 @@ static void set_master_heartbeat(MYSQL_MONITOR *handle, MONITOR_SERVERS *databas } /* check if the maxscale_schema database and replication_heartbeat table exist */ - if (mysql_query(database->con, "SELECT table_name FROM information_schema.tables WHERE table_schema = 'maxscale_schema' AND table_name = 'replication_heartbeat'")) { + if (mysql_query(database->con, + "SELECT table_name FROM information_schema.tables " + "WHERE table_schema = 'maxscale_schema' AND table_name = 'replication_heartbeat'")) + { MXS_ERROR( "[mysql_mon]: Error checking for replication_heartbeat in Master server" ": %s", mysql_error(database->con)); database->server->rlag = -1;