From 1f21040fb3af813aeaa07bb4cbe1f6da27c8b80b Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Sat, 3 Jan 2015 08:08:47 +0900 Subject: [PATCH] Fix help output formatting --- repmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgr.c b/repmgr.c index d5b3b2ac..89d45b67 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1726,7 +1726,7 @@ help(const char *progname) printf(_(" -F, --force force potentially dangerous operations\n" \ " to happen\n")); printf(_(" -W, --wait wait for a master to appear\n")); - printf(_(" -r, --min-recovery-apply-delay=VALUE enable recovery time delay, value has to be a valid time atom (e.g. 5min)")); + printf(_(" -r, --min-recovery-apply-delay=VALUE enable recovery time delay, value has to be a valid time atom (e.g. 5min)\n")); printf(_(" --initdb-no-pwprompt don't require superuser password when running initdb\n")); printf(_("\n%s performs some tasks like clone a node, promote it or making follow\n"), progname); printf(_("another node and then exits.\n\n"));