Remove literal tabs from message strings
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 27 May 2011 22:01:42 +0000 (01:01 +0300)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 27 May 2011 22:01:42 +0000 (01:01 +0300)
contrib/pg_standby/pg_standby.c

index 7204b447da7cac8e8a6d756ef09c2730565a9fa2..281d5892ee1e685965f9f3d77cd638ec4dd76cec 100644 (file)
@@ -722,20 +722,20 @@ main(int argc, char **argv)
 
    if (debug)
    {
-       fprintf(stderr, "Trigger file       : %s\n", triggerPath ? triggerPath : "<not set>");
-       fprintf(stderr, "Waiting for WAL file   : %s\n", nextWALFileName);
-       fprintf(stderr, "WAL file path      : %s\n", WALFilePath);
-       fprintf(stderr, "Restoring to       : %s\n", xlogFilePath);
-       fprintf(stderr, "Sleep interval     : %d second%s\n",
+       fprintf(stderr, "Trigger file:         %s\n", triggerPath ? triggerPath : "<not set>");
+       fprintf(stderr, "Waiting for WAL file: %s\n", nextWALFileName);
+       fprintf(stderr, "WAL file path:        %s\n", WALFilePath);
+       fprintf(stderr, "Restoring to:         %s\n", xlogFilePath);
+       fprintf(stderr, "Sleep interval:       %d second%s\n",
                sleeptime, (sleeptime > 1 ? "s" : " "));
-       fprintf(stderr, "Max wait interval  : %d %s\n",
+       fprintf(stderr, "Max wait interval:    %d %s\n",
                maxwaittime, (maxwaittime > 0 ? "seconds" : "forever"));
-       fprintf(stderr, "Command for restore    : %s\n", restoreCommand);
-       fprintf(stderr, "Keep archive history   : ");
+       fprintf(stderr, "Command for restore %s\n", restoreCommand);
+       fprintf(stderr, "Keep archive history: ");
        if (need_cleanup)
            fprintf(stderr, "%s and later\n", exclusiveCleanupFileName);
        else
-           fprintf(stderr, "No cleanup required\n");
+           fprintf(stderr, "no cleanup required\n");
        fflush(stderr);
    }