Commit 39d0928a authored by Peter Eisentraut's avatar Peter Eisentraut

Use correct format placeholder for timeline IDs

Should be %u rather than %d.
parent 544b2808
......@@ -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));
}
......
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