mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Attempt to unbreak MSVC builds broken by f21bb9cfb5
.
We can't use type uint, so use uint32.
This commit is contained in:
@ -7087,7 +7087,7 @@ CreateCheckPoint(int flags)
|
|||||||
vxids = GetVirtualXIDsDelayingChkpt(&nvxids);
|
vxids = GetVirtualXIDsDelayingChkpt(&nvxids);
|
||||||
if (nvxids > 0)
|
if (nvxids > 0)
|
||||||
{
|
{
|
||||||
uint nwaits = 0;
|
uint32 nwaits = 0;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user