From 5fdd7fefb859eb9d173b53221998011864fe117e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 22 Dec 2011 12:13:10 +0100 Subject: ctdb-tool: adapt formatting of "listvars" output to lenght of longest name (This used to be ctdb commit 295168d99183d2d21f27a8ac6825d421fa866b28) --- ctdb/tools/ctdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctdb/tools/ctdb.c b/ctdb/tools/ctdb.c index 717f74c339..08bc2b8b18 100644 --- a/ctdb/tools/ctdb.c +++ b/ctdb/tools/ctdb.c @@ -3781,7 +3781,7 @@ static int control_getvar(struct ctdb_context *ctdb, int argc, const char **argv return -1; } - printf("%-19s = %u\n", name, value); + printf("%-23s = %u\n", name, value); return 0; } -- cgit