summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2012-05-23 16:58:17 +0000
committerPeter Eisentraut2012-05-23 16:58:17 +0000
commit72155b29a864d3621795f6cd1528d8e54cc3c671 (patch)
tree47c7d2c818b1c40fc81bb659a5067236083b2ecf
parentdb2cd074824d1cd3c7b7397b7c7230100d7a78a3 (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c
index 52f5fcaf10..57241ff897 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;