Use correct format placeholder for timeline IDs

Should be %u rather than %d.
This commit is contained in:
Peter Eisentraut 2021-04-21 08:26:18 +02:00
parent 544b28088f
commit 39d0928a0e
1 changed files with 1 additions and 1 deletions

View File

@ -857,7 +857,7 @@ getTimelineHistory(ControlFileData *controlFile, int *nentries)
TimeLineHistoryEntry *entry;
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->end));
}