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

Commit 674677c

Browse files
committed
Remove trailing spaces in some output
Author: Alexander Law <exclusion@gmail.com>
1 parent cf615fb commit 674677c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/backend/executor/nodeMergejoin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ ExecMergeTupleDump(MergeJoinState *mergestate)
587587
ExecMergeTupleDumpInner(mergestate);
588588
ExecMergeTupleDumpMarked(mergestate);
589589

590-
printf("******** \n");
590+
printf("********\n");
591591
}
592592
#endif
593593

src/bin/pg_waldump/pg_waldump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ usage(void)
683683
printf(_("%s decodes and displays PostgreSQL transaction logs for debugging.\n\n"),
684684
progname);
685685
printf(_("Usage:\n"));
686-
printf(_(" %s [OPTION]... [STARTSEG [ENDSEG]] \n"), progname);
686+
printf(_(" %s [OPTION]... [STARTSEG [ENDSEG]]\n"), progname);
687687
printf(_("\nOptions:\n"));
688688
printf(_(" -b, --bkp-details output detailed information about backup blocks\n"));
689689
printf(_(" -e, --end=RECPTR stop reading at log position RECPTR\n"));

src/interfaces/libpq/fe-connect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3017,7 +3017,7 @@ PQconnectPoll(PGconn *conn)
30173017
restoreErrorMessage(conn, &savedMessage);
30183018
appendPQExpBuffer(&conn->errorMessage,
30193019
libpq_gettext("test \"show transaction_read_only\" failed "
3020-
" on \"%s:%s\" \n"),
3020+
" on \"%s:%s\"\n"),
30213021
conn->connhost[conn->whichhost].host,
30223022
conn->connhost[conn->whichhost].port);
30233023
conn->status = CONNECTION_OK;

0 commit comments

Comments
 (0)