mirror of
https://github.com/postgres/postgres.git
synced 2026-03-14 14:42:30 -04:00
Attempt to unbreak MSVC builds broken by f21bb9cfb5.
We can't use type uint, so use uint32.
This commit is contained in:
parent
f21bb9cfb5
commit
d5652e50d5
1 changed files with 1 additions and 1 deletions
|
|
@ -7087,7 +7087,7 @@ CreateCheckPoint(int flags)
|
|||
vxids = GetVirtualXIDsDelayingChkpt(&nvxids);
|
||||
if (nvxids > 0)
|
||||
{
|
||||
uint nwaits = 0;
|
||||
uint32 nwaits = 0;
|
||||
|
||||
do
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue