Skip to content

Commit 8eda9d4

Browse files
committed
Fix output of show command
1 parent be71f4a commit 8eda9d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/show.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,9 @@ show_backup_list(FILE *out, parray *backup_list)
226226

227227
/* if you add new fields here, fix the header */
228228
/* show header */
229-
fputs("===============================================================================================================================\n", out);
230-
fputs(" Instance ID Recovery time Mode WAL Current/Parent TLI Time Data Start LSN Stop LSN Status \n", out);
231-
fputs("===============================================================================================================================\n", out);
229+
fputs("==================================================================================================================================\n", out);
230+
fputs(" Instance ID Recovery time Mode WAL Current/Parent TLI Time Data Start LSN Stop LSN Status\n", out);
231+
fputs("==================================================================================================================================\n", out);
232232

233233
for (i = 0; i < parray_num(backup_list); i++)
234234
{

0 commit comments

Comments
 (0)