diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-05-23 19:58:17 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-05-23 19:58:17 +0300 |
commit | 72155b29a864d3621795f6cd1528d8e54cc3c671 (patch) | |
tree | 47c7d2c818b1c40fc81bb659a5067236083b2ecf | |
parent | db2cd074824d1cd3c7b7397b7c7230100d7a78a3 (diff) | |
download | postgresql-72155b29a864d3621795f6cd1528d8e54cc3c671.tar.gz postgresql-72155b29a864d3621795f6cd1528d8e54cc3c671.zip |
pg_standby: Remove tabs from string literals
And align a bit better with the rest of the debug output.
-rw-r--r-- | contrib/pg_standby/pg_standby.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c index 52f5fcaf106..57241ff8970 100644 --- a/contrib/pg_standby/pg_standby.c +++ b/contrib/pg_standby/pg_standby.c @@ -483,7 +483,7 @@ RestoreWALFileForRecovery(void) if (debug) { - fprintf(stderr, "running restore :"); + fprintf(stderr, "running restore: "); fflush(stderr); } @@ -494,7 +494,7 @@ RestoreWALFileForRecovery(void) { if (debug) { - fprintf(stderr, " OK\n"); + fprintf(stderr, "OK\n"); fflush(stderr); } return true; |