Commit ea1aee88 authored by Peter Eisentraut's avatar Peter Eisentraut

pg_controldata: Undo message spelling change

parent 70ec2f8f
......@@ -243,7 +243,7 @@ main(int argc, char *argv[])
printf(_("Fake LSN counter for unlogged rels: %X/%X\n"),
(uint32) (ControlFile.unloggedLSN >> 32),
(uint32) ControlFile.unloggedLSN);
printf(_("Min recovery ending location: %X/%X\n"),
printf(_("Minimum recovery ending location: %X/%X\n"),
(uint32) (ControlFile.minRecoveryPoint >> 32),
(uint32) ControlFile.minRecoveryPoint);
printf(_("Min recovery ending loc's timeline: %u\n"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment