Skip to content

Commit 881a917

Browse files
committed
Fix incorrect format placeholder
1 parent 35739b8 commit 881a917

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/modules/test_slru/test_slru.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ test_slru_page_sync(PG_FUNCTION_ARGS)
155155
ftag.segno = pageno / SLRU_PAGES_PER_SEGMENT;
156156
SlruSyncFileTag(TestSlruCtl, &ftag, path);
157157

158-
elog(NOTICE, "Called SlruSyncFileTag() for segment %d on path %s",
158+
elog(NOTICE, "Called SlruSyncFileTag() for segment %u on path %s",
159159
ftag.segno, path);
160160

161161
PG_RETURN_VOID();
@@ -170,7 +170,7 @@ test_slru_page_delete(PG_FUNCTION_ARGS)
170170
ftag.segno = pageno / SLRU_PAGES_PER_SEGMENT;
171171
SlruDeleteSegment(TestSlruCtl, ftag.segno);
172172

173-
elog(NOTICE, "Called SlruDeleteSegment() for segment %d", ftag.segno);
173+
elog(NOTICE, "Called SlruDeleteSegment() for segment %u", ftag.segno);
174174

175175
PG_RETURN_VOID();
176176
}

0 commit comments

Comments
 (0)