diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2012-12-03 10:23:22 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2012-12-03 10:23:22 -0500 |
commit | d5652e50d5669a8a4d8a282845ea6e26197ae10b (patch) | |
tree | a33f168eb0e457af3efbfc120ab7aabab75cd5ee /src | |
parent | f21bb9cfb5646e1793dcc9c0ea697bab99afa523 (diff) | |
download | postgresql-d5652e50d5669a8a4d8a282845ea6e26197ae10b.tar.gz postgresql-d5652e50d5669a8a4d8a282845ea6e26197ae10b.zip |
Attempt to unbreak MSVC builds broken by f21bb9cfb5646e1793dcc9c0ea697bab99afa523.
We can't use type uint, so use uint32.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 2b579f9b727..754dfe7bdc6 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7087,7 +7087,7 @@ CreateCheckPoint(int flags) vxids = GetVirtualXIDsDelayingChkpt(&nvxids); if (nvxids > 0) { - uint nwaits = 0; + uint32 nwaits = 0; do { |