mirror of
https://github.com/postgres/postgres.git
synced 2025-05-21 15:54:08 +03:00
Use correct format placeholder for timeline IDs
Should be %u rather than %d.
This commit is contained in:
parent
544b28088f
commit
39d0928a0e
@ -857,7 +857,7 @@ getTimelineHistory(ControlFileData *controlFile, int *nentries)
|
|||||||
TimeLineHistoryEntry *entry;
|
TimeLineHistoryEntry *entry;
|
||||||
|
|
||||||
entry = &history[i];
|
entry = &history[i];
|
||||||
pg_log_debug("%d: %X/%X - %X/%X", entry->tli,
|
pg_log_debug("%u: %X/%X - %X/%X", entry->tli,
|
||||||
LSN_FORMAT_ARGS(entry->begin),
|
LSN_FORMAT_ARGS(entry->begin),
|
||||||
LSN_FORMAT_ARGS(entry->end));
|
LSN_FORMAT_ARGS(entry->end));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user