From: Peter Eisentraut Date: Wed, 23 May 2012 16:58:17 +0000 (+0300) Subject: pg_standby: Remove tabs from string literals X-Git-Tag: REL9_1_4~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4615d2ca28fe9dff6e5ebaebd6caf190a0c78ba5;p=postgresql pg_standby: Remove tabs from string literals And align a bit better with the rest of the debug output. --- diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c index 0aa05344b9..94fb2cf11c 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;