Format with Uncrustify 0.67

This commit is contained in:
Markus Mäkelä
2018-09-10 13:30:23 +03:00
parent d11c78ad80
commit 108638b0cf
14 changed files with 74 additions and 74 deletions

View File

@ -26,7 +26,7 @@ using maxscale::string_printf;
namespace
{
using VisitorFunc = std::function<bool(MariaDBServer*)>; // Used by graph search
using VisitorFunc = std::function<bool (MariaDBServer*)>; // Used by graph search
/**
* Generic depth-first search. Iterates through the root and its child nodes (slaves) and runs

View File

@ -1267,12 +1267,12 @@ string SlaveStatus::to_string() const
slave_sql_running ? "Yes" : "No");
string rval = string_printf(
" Host: %22s, IO/SQL running: %7s, Master ID: %4" PRId64 ", Gtid_IO_Pos: %s, R.Lag: %d",
host_port.c_str(),
running_states.c_str(),
master_server_id,
gtid_io_pos.to_string().c_str(),
seconds_behind_master);
" Host: %22s, IO/SQL running: %7s, Master ID: %4" PRId64 ", Gtid_IO_Pos: %s, R.Lag: %d",
host_port.c_str(),
running_states.c_str(),
master_server_id,
gtid_io_pos.to_string().c_str(),
seconds_behind_master);
return rval;
}