We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d309a commit 753d942Copy full SHA for 753d942
catalog.c
@@ -395,11 +395,11 @@ pgBackupWriteControl(FILE *out, pgBackup *backup)
395
fprintf(out, "\n#Result backup info\n");
396
fprintf(out, "timelineid = %d\n", backup->tli);
397
/* LSN returned by pg_start_backup */
398
- fprintf(out, "start-lsn = %x/%08x\n",
+ fprintf(out, "start-lsn = %X/%X\n",
399
(uint32) (backup->start_lsn >> 32),
400
(uint32) backup->start_lsn);
401
/* LSN returned by pg_stop_backup */
402
- fprintf(out, "stop-lsn = %x/%08x\n",
+ fprintf(out, "stop-lsn = %X/%X\n",
403
(uint32) (backup->stop_lsn >> 32),
404
(uint32) backup->stop_lsn);
405
0 commit comments