@@ -565,7 +565,7 @@ GetOldestUnsummarizedLSN(TimeLineID *tli, bool *lsn_is_exact,
565
565
if (unsummarized_tli == 0 )
566
566
ereport (ERROR ,
567
567
errcode (ERRCODE_INTERNAL_ERROR ),
568
- errmsg_internal ("no WAL found on timeline %d " , latest_tli ));
568
+ errmsg_internal ("no WAL found on timeline %u " , latest_tli ));
569
569
570
570
/*
571
571
* Don't try to summarize anything older than the end LSN of the newest
@@ -909,7 +909,7 @@ SummarizeWAL(TimeLineID tli, XLogRecPtr start_lsn, bool exact,
909
909
* able to read a complete record.
910
910
*/
911
911
ereport (DEBUG1 ,
912
- errmsg_internal ("could not read WAL from timeline %d at %X/%X: end of WAL at %X/%X" ,
912
+ errmsg_internal ("could not read WAL from timeline %u at %X/%X: end of WAL at %X/%X" ,
913
913
tli ,
914
914
LSN_FORMAT_ARGS (xlogreader -> EndRecPtr ),
915
915
LSN_FORMAT_ARGS (private_data -> read_upto )));
@@ -1064,7 +1064,7 @@ SummarizeWAL(TimeLineID tli, XLogRecPtr start_lsn, bool exact,
1064
1064
1065
1065
/* Tell the user what we did. */
1066
1066
ereport (DEBUG1 ,
1067
- errmsg ("summarized WAL on TLI %d from %X/%X to %X/%X" ,
1067
+ errmsg ("summarized WAL on TLI %u from %X/%X to %X/%X" ,
1068
1068
tli ,
1069
1069
LSN_FORMAT_ARGS (summary_start_lsn ),
1070
1070
LSN_FORMAT_ARGS (summary_end_lsn )));
0 commit comments