From 3e983b258c5d056a636c372c69befa23a7169dfe 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 fa249230..41a5a0ec 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1960,7 +1960,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"));