Skip to content
Snippets Groups Projects
Commit cee31f5f authored by Fujii Masao's avatar Fujii Masao
Browse files

Use proper format specifier %X/%X for LSN.

parent 3a3b3090
No related branches found
No related tags found
No related merge requests found
......@@ -482,7 +482,7 @@ SyncRepReleaseWaiters(void)
LWLockRelease(SyncRepLock);
elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%x",
elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%X",
numwrite, (uint32) (MyWalSnd->write >> 32), (uint32) MyWalSnd->write,
numflush, (uint32) (MyWalSnd->flush >> 32), (uint32) MyWalSnd->flush,
numapply, (uint32) (MyWalSnd->apply >> 32), (uint32) MyWalSnd->apply);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment