Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4d7d638

Browse files
committed
Remove literal tabs from message strings
1 parent 420dcaa commit 4d7d638

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

contrib/pg_standby/pg_standby.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -722,20 +722,20 @@ main(int argc, char **argv)
722722

723723
if (debug)
724724
{
725-
fprintf(stderr, "Trigger file : %s\n", triggerPath ? triggerPath : "<not set>");
726-
fprintf(stderr, "Waiting for WAL file : %s\n", nextWALFileName);
727-
fprintf(stderr, "WAL file path : %s\n", WALFilePath);
728-
fprintf(stderr, "Restoring to : %s\n", xlogFilePath);
729-
fprintf(stderr, "Sleep interval : %d second%s\n",
725+
fprintf(stderr, "Trigger file: %s\n", triggerPath ? triggerPath : "<not set>");
726+
fprintf(stderr, "Waiting for WAL file: %s\n", nextWALFileName);
727+
fprintf(stderr, "WAL file path: %s\n", WALFilePath);
728+
fprintf(stderr, "Restoring to: %s\n", xlogFilePath);
729+
fprintf(stderr, "Sleep interval: %d second%s\n",
730730
sleeptime, (sleeptime > 1 ? "s" : " "));
731-
fprintf(stderr, "Max wait interval : %d %s\n",
731+
fprintf(stderr, "Max wait interval: %d %s\n",
732732
maxwaittime, (maxwaittime > 0 ? "seconds" : "forever"));
733-
fprintf(stderr, "Command for restore : %s\n", restoreCommand);
734-
fprintf(stderr, "Keep archive history : ");
733+
fprintf(stderr, "Command for restore: %s\n", restoreCommand);
734+
fprintf(stderr, "Keep archive history: ");
735735
if (need_cleanup)
736736
fprintf(stderr, "%s and later\n", exclusiveCleanupFileName);
737737
else
738-
fprintf(stderr, "No cleanup required\n");
738+
fprintf(stderr, "no cleanup required\n");
739739
fflush(stderr);
740740
}
741741

0 commit comments

Comments
 (0)