diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-06-06 22:17:46 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2007-06-06 22:17:46 +1000 |
commit | 341d715f1ae60e1b61675c2f7d0d61b684286c47 (patch) | |
tree | b5c03106f0942955250902fa18a091a3482fa958 /ctdb | |
parent | 8fbca613d405e3fe70ad31cf118d7bdddb03000e (diff) | |
download | samba-341d715f1ae60e1b61675c2f7d0d61b684286c47.tar.gz samba-341d715f1ae60e1b61675c2f7d0d61b684286c47.tar.xz samba-341d715f1ae60e1b61675c2f7d0d61b684286c47.zip |
formatting fix for wider variable names
(This used to be ctdb commit 195bde145f62221a7bb1b12014ada98ad5df4e9e)
Diffstat (limited to 'ctdb')
-rw-r--r-- | ctdb/tools/ctdb_control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/tools/ctdb_control.c b/ctdb/tools/ctdb_control.c index 478e30ef93..d5ffbd96be 100644 --- a/ctdb/tools/ctdb_control.c +++ b/ctdb/tools/ctdb_control.c @@ -582,7 +582,7 @@ static int control_getvar(struct ctdb_context *ctdb, int argc, const char **argv return -1; } - printf("%-17s = %u\n", name, value); + printf("%-18s = %u\n", name, value); return 0; } |